interface Text {
    $CreationOptions?: TextCreationOptions;
    $ID: string;
    $Type: "Texts$Text";
    translations: Translation[];
    addTranslation(options: TranslationCreationOptions): Promise<Translation>;
}

Hierarchy (view full)

Properties

$CreationOptions?: TextCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

translations: Translation[]

Methods