10 lines
144 B
TypeScript
Raw Normal View History

2019-09-18 15:02:21 +09:00
export interface APIRequest {
_id?: string;
}
export interface APIResponse {
_id?: string;
statusCode: string;
errorMessage: string;
}