UNPKG

9s-fe-core

Version:

Core functionalities for authentication, configuration, and repository management.

9 lines (8 loc) 275 B
import { PaginationModel } from './pagination_model'; export interface ResponseModel<T = any> { status: number; message?: string | null; dataResponse?: T; meta?: PaginationModel; } export declare const buildResponse: <T = any>(json: any) => ResponseModel<T>;