flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
79 lines (78 loc) • 2.2 kB
TypeScript
/**
* 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 RichTextItemAnnotations
*/
export interface RichTextItemAnnotations {
/**
*
* @type {boolean}
* @memberof RichTextItemAnnotations
*/
bold?: boolean;
/**
*
* @type {boolean}
* @memberof RichTextItemAnnotations
*/
italic?: boolean;
/**
*
* @type {boolean}
* @memberof RichTextItemAnnotations
*/
strikethrough?: boolean;
/**
*
* @type {boolean}
* @memberof RichTextItemAnnotations
*/
underline?: boolean;
/**
*
* @type {boolean}
* @memberof RichTextItemAnnotations
*/
code?: boolean;
/**
*
* @type {string}
* @memberof RichTextItemAnnotations
*/
color?: RichTextItemAnnotationsColorEnum;
}
/**
* @export
*/
export declare const RichTextItemAnnotationsColorEnum: {
readonly Default: "default";
readonly Gray: "gray";
readonly Brown: "brown";
readonly Orange: "orange";
readonly Yellow: "yellow";
readonly Green: "green";
readonly Blue: "blue";
readonly Purple: "purple";
readonly Pink: "pink";
readonly Red: "red";
};
export type RichTextItemAnnotationsColorEnum = typeof RichTextItemAnnotationsColorEnum[keyof typeof RichTextItemAnnotationsColorEnum];
/**
* Check if a given object implements the RichTextItemAnnotations interface.
*/
export declare function instanceOfRichTextItemAnnotations(value: object): value is RichTextItemAnnotations;
export declare function RichTextItemAnnotationsFromJSON(json: any): RichTextItemAnnotations;
export declare function RichTextItemAnnotationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextItemAnnotations;
export declare function RichTextItemAnnotationsToJSON(json: any): RichTextItemAnnotations;
export declare function RichTextItemAnnotationsToJSONTyped(value?: RichTextItemAnnotations | null, ignoreDiscriminator?: boolean): any;