delegate.d.ts 242 B

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