UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
27 lines (26 loc) 882 B
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.19.10 * 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): value is Continent; export declare function ContinentFromJSON(json: any): Continent; export declare function ContinentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Continent; export declare function ContinentToJSON(json: any): Continent; export declare function ContinentToJSONTyped(value?: Continent | null, ignoreDiscriminator?: boolean): any;