UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
40 lines (39 loc) 1.19 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.21.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.ValueToJSONTyped = exports.ValueToJSON = exports.ValueFromJSONTyped = exports.ValueFromJSON = exports.instanceOfValue = void 0; /** * Check if a given object implements the Value interface. */ function instanceOfValue(value) { return true; } exports.instanceOfValue = instanceOfValue; function ValueFromJSON(json) { return ValueFromJSONTyped(json, false); } exports.ValueFromJSON = ValueFromJSON; function ValueFromJSONTyped(json, ignoreDiscriminator) { return json; } exports.ValueFromJSONTyped = ValueFromJSONTyped; function ValueToJSON(json) { return ValueToJSONTyped(json, false); } exports.ValueToJSON = ValueToJSON; function ValueToJSONTyped(value, ignoreDiscriminator = false) { return value; } exports.ValueToJSONTyped = ValueToJSONTyped;