@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
8 lines (7 loc) • 428 B
TypeScript
export declare class CustomEventTargetBase implements EventTarget {
private _et;
constructor();
addEventListener(type: string, listener: EventListenerOrEventListenerObject | null, options?: boolean | AddEventListenerOptions): void;
dispatchEvent(event: Event): boolean;
removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: boolean | EventListenerOptions): void;
}