export interface PageResponse { data: T[]; page?: number; total: number; } export const pageEmpty = (): PageResponse => ({ data: [], total: 0, });