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.

9 lines
356 B

3 months ago
  1. import MultiplexHandler from "./MultiplexHandler";
  2. import { Handler } from "./Parser";
  3. export declare class CollectingHandler extends MultiplexHandler {
  4. private readonly cbs;
  5. events: [keyof Handler, ...unknown[]][];
  6. constructor(cbs?: Partial<Handler>);
  7. onreset(): void;
  8. restart(): void;
  9. }
  10. //# sourceMappingURL=CollectingHandler.d.ts.map