f305776
1
2
3
4
5
6
7
8
9
export interface Pagination { current: number; pageSize: number; } export interface BaseState { pagination: Pagination; }