UNPKG

ant-table-ext

Version:

An extended table based on ant table

7 lines (6 loc) 209 B
export interface Store { setState: (partial: Object) => void; getState: () => any; subscribe: (listener: () => void) => () => void; } export default function createStore(initialState: any): Store;