11 lines
225 B
TypeScript
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;
|
|
}
|