UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
26 lines (25 loc) 706 B
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.18.6 * 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): boolean; export declare function ValueFromJSON(json: any): Value; export declare function ValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): Value; export declare function ValueToJSON(value?: Value | null): any;