合伙人运营小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bus.d.ts 186B

1234567
  1. export default class Bus {
  2. listeners: Map<string, any>;
  3. emitted: Set<string>;
  4. constructor();
  5. on(evtName: string, listener: any): void;
  6. emit(evtName: string): void;
  7. }