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

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;
};