UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
27 lines (26 loc) 937 B
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.66 * Contact: contact@emergentmethods.ai * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Report */ export interface Report { } /** * Check if a given object implements the Report interface. */ export declare function instanceOfReport(value: object): value is Report; export declare function ReportFromJSON(json: any): Report; export declare function ReportFromJSONTyped(json: any, ignoreDiscriminator: boolean): Report; export declare function ReportToJSON(json: any): Report; export declare function ReportToJSONTyped(value?: Report | null, ignoreDiscriminator?: boolean): any;