UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
26 lines (25 loc) 775 B
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.9.1 * 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 FunctionCall */ export interface FunctionCall { } /** * Check if a given object implements the FunctionCall interface. */ export declare function instanceOfFunctionCall(value: object): boolean; export declare function FunctionCallFromJSON(json: any): FunctionCall; export declare function FunctionCallFromJSONTyped(json: any, ignoreDiscriminator: boolean): FunctionCall; export declare function FunctionCallToJSON(value?: FunctionCall | null): any;