/** * ListResponse * @author LL * @date 2022-01-20 上午 10:41 **/ export declare class ListResponse { limit?: number; error?: string; code?: string | number; ok?: boolean; data: T[]; offset?: number; total?: number; requestId?: string; static getData(res: ListResponse): T[]; } //# sourceMappingURL=ListResponse.d.ts.map