UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
27 lines (26 loc) 1 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.22 * 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;