12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import Updux from '../index.js';
|
|
declare const _default: Updux<{
|
|
initialState: number;
|
|
actions: {
|
|
incNextId: any;
|
|
};
|
|
selectors: {
|
|
getNextId: (state: any) => any;
|
|
};
|
|
}>;
|
|
export default _default;
|