Skip to content

Commit cfe2be4

Browse files
committed
fix: missing typings
1 parent a1e69f3 commit cfe2be4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: src/label.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@ export declare class Label extends TNLabel {
2626
* Gets or sets html string for the HtmlView.
2727
*/
2828
html: string;
29+
30+
verticalTextAlignment: VerticalTextAlignment;
2931
}
32+
export type VerticalTextAlignment = 'initial' | 'top' | 'middle' | 'bottom';
3033

3134
export declare const htmlProperty: Property<Label, string>;
35+
export declare const verticalTextAlignmentProperty: Property<Label, VerticalTextAlignment>;
3236

3337
export interface TextShadow {
3438
offsetX: dip;

0 commit comments

Comments
 (0)