diapal-panel/src/driven/utils/protocols/serviceProtocols.ts

10 lines
265 B
TypeScript

export type RequestMethods = "get" | "post" | "put" | "delete";
export type apiGlobalResponseObject<DataType> = {
type: "Success" | "client Error" | string;
status: 200 | 400 | 401 | 500 | number;
message: string;
description: string;
data: DataType;
};