19 lines
510 B
TypeScript
19 lines
510 B
TypeScript
|
import { IView, View } from "../ui/view";
|
||
|
import { Color } from "../util/color";
|
||
|
import { Gravity } from "../util/gravity";
|
||
|
export interface IText extends IView {
|
||
|
text?: string;
|
||
|
textColor?: Color;
|
||
|
textSize?: number;
|
||
|
maxLines?: number;
|
||
|
textAlignment?: Gravity;
|
||
|
}
|
||
|
export declare class Text extends View implements IText {
|
||
|
text?: string;
|
||
|
textColor?: Color;
|
||
|
textSize?: number;
|
||
|
maxLines?: number;
|
||
|
textAlignment?: Gravity;
|
||
|
}
|
||
|
export declare function text(config: IText): Text;
|