| 16 | } |
| 17 | |
| 18 | export interface AdminUserListResp { |
| 19 | flags: number; |
| 20 | texts?: string; |
| 21 | total: number; |
| 22 | page: number; |
| 23 | page_size: number; |
| 24 | items: AdminUser[]; |
| 25 | } |
| 26 | |
| 27 | export interface AdminUserListQuery { |
| 28 | page?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected