@apideck/node
Version:
Apideck Node.js SDK
12 lines (11 loc) • 377 B
TypeScript
/**
* Raw response from the integration when raw=true query param is provided
* @export
* @interface Raw
*/
export interface Raw {
[key: string]: unknown;
}
export declare function RawFromJSON(json: any): Raw;
export declare function RawFromJSONTyped(json: any, ignoreDiscriminator: boolean): Raw;
export declare function RawToJSON(value?: Raw | null): any;