Files
yusheng-h5/uni_modules/UniDevTools/node_modules/licia/delegate.d.ts

9 lines
242 B
TypeScript
Raw Normal View History

2025-08-11 11:06:07 +08: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;