1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | import { FlexComponentBase } from "./models.js";
|
13 | export type FlexSpan = FlexComponentBase & {
|
14 | type: "span";
|
15 | |
16 |
|
17 | text?: string;
|
18 | |
19 |
|
20 | size?: string;
|
21 | |
22 |
|
23 | color?: string;
|
24 | |
25 |
|
26 | weight?: FlexSpan.WeightEnum;
|
27 | |
28 |
|
29 | style?: FlexSpan.StyleEnum;
|
30 | |
31 |
|
32 | decoration?: FlexSpan.DecorationEnum;
|
33 | };
|
34 | export declare namespace FlexSpan {
|
35 | type WeightEnum = "regular" | "bold";
|
36 | type StyleEnum = "normal" | "italic";
|
37 | type DecorationEnum = "none" | "underline" | "line-through";
|
38 | }
|
39 |
|
\ | No newline at end of file |