11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
export interface EndpointHeadersOut {
|
|
headers: {
|
|
[key: string]: string;
|
|
};
|
|
sensitive: string[];
|
|
}
|
|
export declare const EndpointHeadersOutSerializer: {
|
|
_fromJsonObject(object: any): EndpointHeadersOut;
|
|
_toJsonObject(self: EndpointHeadersOut): any;
|
|
};
|