12 lines
280 B
TypeScript
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;
|
|
};
|