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.07 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 RichTextItemTextLink */ export interface RichTextItemTextLink { /** * * @type {string} * @memberof RichTextItemTextLink */ url?: string; } /** * Check if a given object implements the RichTextItemTextLink interface. */ export declare function instanceOfRichTextItemTextLink(value: object): value is RichTextItemTextLink; export declare function RichTextItemTextLinkFromJSON(json: any): RichTextItemTextLink; export declare function RichTextItemTextLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextItemTextLink; export declare function RichTextItemTextLinkToJSON(json: any): RichTextItemTextLink; export declare function RichTextItemTextLinkToJSONTyped(value?: RichTextItemTextLink | null, ignoreDiscriminator?: boolean): any;