123456789101112131415161718192021222324252627282930313233343536 |
- import { IValidationItem } from '../hooks/Form';
- export interface KeyValuePair {
- label: string;
- value: string | number;
- }
- export interface IRes {
- code: number;
- message: string;
- data?: any;
- }
- export interface IPagination {
- offset?: number;
- limit?: number;
- }
- export interface IPaginationRes {
- count: number;
- limit: number;
- offset: number;
- total_count: number;
- }
- export enum ManageRequestMethods {
- DELETE = 'delete',
- CREATE = 'create',
- }
- export type FormHelperType = {
- formValue: { [x: string]: any };
- updateForm: (type: string, value: string) => void;
- validation: { [key: string]: IValidationItem };
- checkIsValid: Function;
- };
|