PromucFlow_constructor/app/client/src/api/ApiResponses.tsx

10 lines
184 B
TypeScript
Raw Normal View History

export type ApiErrorCodes = "INVALID_REQUEST" | "UNKNOWN"
export interface ResponseMeta {
errorCode?: ApiErrorCodes
}
export interface ApiResponse {
responseMeta: ResponseMeta
}