UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
36 lines (35 loc) 1.03 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DateToToJSON = exports.DateToFromJSONTyped = exports.DateToFromJSON = exports.instanceOfDateTo = void 0; /** * Check if a given object implements the DateTo interface. */ function instanceOfDateTo(value) { return true; } exports.instanceOfDateTo = instanceOfDateTo; function DateToFromJSON(json) { return DateToFromJSONTyped(json, false); } exports.DateToFromJSON = DateToFromJSON; function DateToFromJSONTyped(json, ignoreDiscriminator) { return json; } exports.DateToFromJSONTyped = DateToFromJSONTyped; function DateToToJSON(value) { return value; } exports.DateToToJSON = DateToToJSON;