Files
FrenoCorp/node_modules/svix/dist/models/endpointHeadersPatchIn.d.ts

11 lines
299 B
TypeScript

export interface EndpointHeadersPatchIn {
deleteHeaders?: string[];
headers: {
[key: string]: string;
};
}
export declare const EndpointHeadersPatchInSerializer: {
_fromJsonObject(object: any): EndpointHeadersPatchIn;
_toJsonObject(self: EndpointHeadersPatchIn): any;
};