UNPKG

443 BTypeScriptView Raw
1import { responseStatusTypes } from "@soushians/shared";
2import { FormSchemaModel } from "../models";
3import { FormsListActions } from "./list.actions";
4export interface State {
5 status: responseStatusTypes;
6 data: FormSchemaModel[];
7}
8export declare const initialState: State;
9export declare function reducer(state: State, action: FormsListActions): State;
10export declare var getStatus: (state: State) => responseStatusTypes;