cumqueoptio
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
19 lines (16 loc) • 371 B
text/typescript
import createStore from './store/createStore';
import model from './model/model';
import { createPlugin } from './plugin';
import * as utils from './utils';
export type {
ModelDesc,
Store,
StoreConfig,
GetActions,
GetState,
ModelDescOptions,
GetModelState,
GetModelActions,
Model,
} from '@/types';
export { createStore, model, createPlugin, utils };