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

10 lines
249 B
TypeScript

export interface EndpointHeadersIn {
headers: {
[key: string]: string;
};
}
export declare const EndpointHeadersInSerializer: {
_fromJsonObject(object: any): EndpointHeadersIn;
_toJsonObject(self: EndpointHeadersIn): any;
};