refactor: paginator

This commit is contained in:
Anthony Fu 2022-11-17 15:35:42 +08:00
parent 6e54d95bbc
commit 0312547629
9 changed files with 88 additions and 56 deletions

View file

@ -16,4 +16,4 @@ export interface UserLogin {
account?: AccountCredentials
}
export type PaginatorState = 'ready' | 'loading' | 'done'
export type PaginatorState = 'idle' | 'loading' | 'done' | 'error'