Files
danak-console/src/types/response.types.ts
T
hamid zarghami 6cb43e42b2 structure
2024-12-23 15:09:11 +03:30

8 lines
140 B
TypeScript

export interface IBaseResponse {
status: number;
success: boolean;
}
export interface IResponse<T> extends IBaseResponse {
data: T;
}