UNPKG

657 BTypeScriptView Raw
1
2export * from '../types/components';
3export interface CustomElementsDefineOptions {
4 exclude?: string[];
5 resourcesUrl?: string;
6 syncQueue?: boolean;
7 raf?: (c: FrameRequestCallback) => number;
8 ael?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
9 rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
10}
11export declare function defineCustomElements(win: Window, opts?: CustomElementsDefineOptions): Promise<void>;
12export declare function applyPolyfills(): Promise<void>;