constants.d.ts 318 B

12345678
  1. export declare const PUBLISH: 0;
  2. export declare type PUBLISH = typeof PUBLISH;
  3. export declare const SUBSCRIBE: 1;
  4. export declare type SUBSCRIBE = typeof SUBSCRIBE;
  5. export declare const RESET: 2;
  6. export declare type RESET = typeof RESET;
  7. export declare const VALUE: 4;
  8. export declare type VALUE = typeof VALUE;