UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

7 lines (6 loc) 225 B
export interface Store { setState: (partial: Record<string, any>) => void; getState: () => any; subscribe: (listener: () => void) => () => void; } export default function createStore(initialState: object): Store;