UNPKG

flowus-api-sdk

Version:

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

33 lines (32 loc) 1.08 kB
/** * 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. */ /** * * @export * @interface RichTextItemEquation */ export interface RichTextItemEquation { /** * * @type {string} * @memberof RichTextItemEquation */ expression?: string; } /** * Check if a given object implements the RichTextItemEquation interface. */ export declare function instanceOfRichTextItemEquation(value: object): value is RichTextItemEquation; export declare function RichTextItemEquationFromJSON(json: any): RichTextItemEquation; export declare function RichTextItemEquationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextItemEquation; export declare function RichTextItemEquationToJSON(json: any): RichTextItemEquation; export declare function RichTextItemEquationToJSONTyped(value?: RichTextItemEquation | null, ignoreDiscriminator?: boolean): any;