10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
export interface EndpointHeadersIn {
|
|
headers: {
|
|
[key: string]: string;
|
|
};
|
|
}
|
|
export declare const EndpointHeadersInSerializer: {
|
|
_fromJsonObject(object: any): EndpointHeadersIn;
|
|
_toJsonObject(self: EndpointHeadersIn): any;
|
|
};
|