uni-ticket-system/node_modules/licia/delegate.d.ts
2023-12-05 10:11:10 +08:00

9 lines
242 B
TypeScript

import types = require('./types');
declare const delegate: {
add(el: Element, type: string, selector: string, cb: types.AnyFn): void;
remove(el: Element, type: string, selector: string, cb: types.AnyFn): void;
};
export = delegate;