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