uni-ticket-system/node_modules/licia/delegate.d.ts

9 lines
242 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
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;