EASYAIuniappNewUI/node_modules/licia/ReduceStore.d.ts
2025-02-08 18:50:38 +08:00

11 lines
251 B
TypeScript

import types = require('./types');
declare class ReduceStore {
constructor(reducer: types.AnyFn, initialState: any);
subscribe(listener: types.AnyFn): types.AnyFn;
dispatch(action: any): any;
getState(): any;
}
export = ReduceStore;