UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
27 lines (26 loc) 924 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.22 * 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 Value */ export interface Value { } /** * Check if a given object implements the Value interface. */ export declare function instanceOfValue(value: object): value is Value; export declare function ValueFromJSON(json: any): Value; export declare function ValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): Value; export declare function ValueToJSON(json: any): Value; export declare function ValueToJSONTyped(value?: Value | null, ignoreDiscriminator?: boolean): any;