digitaform-preview-react
Version:
A comprehensive React form preview component library with form controls,responsive design
21 lines • 512 B
TypeScript
export interface IReturnStatusFields {
ReturnStatus: 'S' | 'E';
ReturnMessage: string;
}
export interface IApiResponse<T> {
Response: T;
Success: boolean;
}
export interface IApiErrorResponse {
Response: IReturnStatusFields[];
Success: boolean;
}
export interface IPagination {
total: number;
page: number;
limit: number;
}
export interface IApiPaginationResponse<T> extends IApiResponse<T> {
pagination: IPagination;
}
//# sourceMappingURL=api-response.interface.d.ts.map