uni-ticket-system/node_modules/licia/ReduceStore.d.ts
2023-12-05 10:11:10 +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;