UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

49 lines (48 loc) 1.53 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * FlowUs API * FlowUs Developer API * * The version of the OpenAPI document: 1.0.0 * * * 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.instanceOfRichTextItemEquation = instanceOfRichTextItemEquation; exports.RichTextItemEquationFromJSON = RichTextItemEquationFromJSON; exports.RichTextItemEquationFromJSONTyped = RichTextItemEquationFromJSONTyped; exports.RichTextItemEquationToJSON = RichTextItemEquationToJSON; exports.RichTextItemEquationToJSONTyped = RichTextItemEquationToJSONTyped; /** * Check if a given object implements the RichTextItemEquation interface. */ function instanceOfRichTextItemEquation(value) { return true; } function RichTextItemEquationFromJSON(json) { return RichTextItemEquationFromJSONTyped(json, false); } function RichTextItemEquationFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'expression': json['expression'] == null ? undefined : json['expression'], }; } function RichTextItemEquationToJSON(json) { return RichTextItemEquationToJSONTyped(json, false); } function RichTextItemEquationToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'expression': value['expression'], }; }