balibabu
feat: save the selected parser to the backend on the upload file page and upload document (#54)
f305776
raw
history blame
129 Bytes
export interface Pagination {
current: number;
pageSize: number;
}
export interface BaseState {
pagination: Pagination;
}