react-simple-crud-ui
Version:
Written in React with hooks, simple CRUD UI with authentication.
22 lines (21 loc) • 811 B
TypeScript
import CRUD from './CRUD/CRUD';
import AuthenticationLayer from './Authentication/index';
import { CrudStateModel, FilterModel, CrudSettingModel, AuthSettingModel } from './CRUD/Model';
import { AppStateModel } from './Authentication/Model';
declare const _default: {
components: {
CRUD: typeof CRUD;
AuthenticationLayer: typeof AuthenticationLayer;
};
reducers: {
appReducer: (state: AppStateModel, action: import("./Authentication/Reducer").AppActions) => any;
};
models: {
AppStateModel: typeof AppStateModel;
CrudStateModel: typeof CrudStateModel;
FilterModel: typeof FilterModel;
CrudSettingModel: typeof CrudSettingModel;
AuthSettingModel: typeof AuthSettingModel;
};
};
export default _default;