Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4f30f72

Browse files
author
farfromrefug
committedMay 2, 2024
fix: typings fix
1 parent c109a96 commit 4f30f72

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

Diff for: ‎src/label.d.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ export declare class Label extends TNLabel {
2727

2828
verticalTextAlignment: VerticalTextAlignment;
2929
lineBreak: LineBreak;
30+
linkColor: string | Color;
31+
linkUnderline: boolean;
32+
selectable: boolean;
33+
autoFontSize: boolean;
34+
autoFontSizeStep: number;
35+
minFontSize: number;
36+
maxFontSize: number;
3037
}
3138
export type VerticalTextAlignment = 'initial' | 'top' | 'middle' | 'bottom' | 'center';
3239
export type LineBreak = 'end' | 'start' | 'middle' | 'none';
@@ -41,4 +48,4 @@ export interface TextShadow {
4148
color: Color;
4249
}
4350

44-
export { enableIOSDTCoreText, createNativeAttributedString } from '@nativescript-community/text';
51+
export { createNativeAttributedString } from '@nativescript-community/text';

0 commit comments

Comments
 (0)
Please sign in to comment.