interface TextWidgetJson {
    height: Input<number>;
    properties: Input<{
        markdown: Input<string>;
    }>;
    type: Input<"text">;
    width: Input<number>;
    x: Input<number>;
    y: Input<number>;
}

Hierarchy (view full)

Properties

height: Input<number>
properties: Input<{
    markdown: Input<string>;
}>

Type declaration

  • markdown: Input<string>
type: Input<"text">
width: Input<number>
x: Input<number>
y: Input<number>

Generated using TypeDoc