Initial commit
This commit is contained in:
9
node_modules/embla-carousel/cjs/components/EventStore.d.ts
generated
vendored
Normal file
9
node_modules/embla-carousel/cjs/components/EventStore.d.ts
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
type EventNameType = keyof DocumentEventMap | keyof WindowEventMap;
|
||||
type EventHandlerType = (evt: any) => void;
|
||||
type EventOptionsType = boolean | AddEventListenerOptions | undefined;
|
||||
export type EventStoreType = {
|
||||
add: (node: EventTarget, type: EventNameType, handler: EventHandlerType, options?: EventOptionsType) => EventStoreType;
|
||||
clear: () => void;
|
||||
};
|
||||
export declare function EventStore(): EventStoreType;
|
||||
export {};
|
||||
Reference in New Issue
Block a user