UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
26 lines (25 loc) 870 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. */ /** * Query to be used for the search. If method='nl', then this will beused as a natural language query. If method='kw', then this willbe used as a direct keyword query. * @export * @interface Query */ export interface Query { } /** * Check if a given object implements the Query interface. */ export declare function instanceOfQuery(value: object): boolean; export declare function QueryFromJSON(json: any): Query; export declare function QueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): Query; export declare function QueryToJSON(value?: Query | null): any;