text align

This commit is contained in:
Emmaline Autumn 2023-10-24 00:49:49 -06:00
parent 6661936188
commit f1bd085384

View File

@ -414,6 +414,15 @@ interface IStyle {
noStroke?: boolean; noStroke?: boolean;
noFill?: boolean; noFill?: boolean;
textAlign?: "center" | "end" | "left" | "right" | "start";
textBaseline?:
| "alphabetic"
| "top"
| "hanging"
| "middle"
| "ideographic"
| "bottom";
} }
interface IDrawable { interface IDrawable {