UNPKG

@renewx/core

Version:

Lightweight state management library with validation support

11 lines (10 loc) 172 B
interface BatchItem { start(): void; end(): void; } interface Batch { stores: BatchItem; notify: BatchItem; } export declare const batch: Batch; export {};