trigger.d.ts 179 B

12345678
  1. declare function trigger(
  2. el: Element | Document,
  3. type: string,
  4. options?: any
  5. ): void;
  6. declare function trigger(type: string, options?: any): void;
  7. export = trigger;