zent
Version:
一套前端设计语言和基于React的实现
25 lines (24 loc) • 394 B
text/typescript
export type PaginationLayout =
| {
type: 'left-arrow';
disabled: boolean;
}
| {
type: 'right-arrow';
disabled: boolean;
}
| {
type: 'number';
page: number;
selected: boolean;
}
| {
type: 'double-left-arrow';
}
| {
type: 'double-right-arrow';
}
| {
type: 'mini-jumper';
totalPages: number;
};