/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/embla-carousel/components/EventStore.d.ts
9 строк
429 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
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 {};