mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-16 20:57:21 +08:00
9 lines
129 B
TypeScript
9 lines
129 B
TypeScript
|
|
export interface Pagination {
|
||
|
|
current: number;
|
||
|
|
pageSize: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface BaseState {
|
||
|
|
pagination: Pagination;
|
||
|
|
}
|