PromucFlow_constructor/app/client/src/api/ApiRequests.tsx
2019-09-23 16:44:02 +05:30

11 lines
225 B
TypeScript

import { ContentType, EncodingType } from "../constants/ApiConstants";
export interface APIHeaders {
"Content-Type": ContentType;
"Accept-Encoding": EncodingType;
}
export interface APIRequest {
requestId?: string;
}