batch.d.ts 235 B

1234
  1. declare function defaultNoopBatch(callback: () => void): void;
  2. export declare const setBatch: (newBatch: typeof defaultNoopBatch) => typeof defaultNoopBatch;
  3. export declare const getBatch: () => typeof defaultNoopBatch;
  4. export {};