UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
26 lines (25 loc) 771 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. */ /** * Continents to filter by. * @export * @interface Continent */ export interface Continent { } /** * Check if a given object implements the Continent interface. */ export declare function instanceOfContinent(value: object): boolean; export declare function ContinentFromJSON(json: any): Continent; export declare function ContinentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Continent; export declare function ContinentToJSON(value?: Continent | null): any;