12 lines
205 B
TypeScript
Raw Normal View History

2019-09-19 10:40:16 +09:00
import { StatusCode } from '../types/status-code.type';
2019-09-18 15:02:21 +09:00
export interface APIRequest {
_id?: string;
}
export interface APIResponse {
_id?: string;
2019-09-19 10:40:16 +09:00
statusCode: StatusCode;
2019-09-18 15:02:21 +09:00
errorMessage: string;
}