src/_extensions/htmlelement.extension.ts

Summary

Maintainability
A
0 mins
Test Coverage
export {};

declare global {
    interface HTMLElement {
        currentChannel: any;
        getChannelConfig(): any;
        setFullScreen(fullScreen?: Boolean): void;
        getOwnerApplication(document?: Document): any;
        bindToCurrentChannel(): any;
        prevChannel(): void;
        nextChannel(): void;
        release(): void;
    }
}