RustamRu 1669f01879
All checks were successful
it-academy/dry-wash-pl/pipeline/head This commit looks good
feat: use RTK Query to create order deails (#81)
2025-02-09 08:04:21 +03:00

15 lines
344 B
TypeScript

type SuccessResponse<Body> = {
success: true;
body: Body;
};
export type ErrorMessage = string;
export const isErrorMessage = (error: unknown): error is ErrorMessage => typeof error === 'string';
type ErrorResponse = {
success: false;
message: ErrorMessage;
};
export type BaseResponse<Body> = SuccessResponse<Body> | ErrorResponse;