File size: 318 Bytes
f305776 97d4387 f305776 21cf732 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
export interface Pagination {
current: number;
pageSize: number;
}
export interface BaseState {
pagination: Pagination;
searchString: string;
}
export interface IModalProps<T> {
showModal?(): void;
hideModal(): void;
visible: boolean;
loading?: boolean;
onOk?(payload?: T): Promise<void> | void;
}
|