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

12 lines
280 B
TypeScript

export interface SinkHttpConfig {
headers?: {
[key: string]: string;
};
key?: string | null;
url: string;
}
export declare const SinkHttpConfigSerializer: {
_fromJsonObject(object: any): SinkHttpConfig;
_toJsonObject(self: SinkHttpConfig): any;
};