12345678910111213 |
- import { STextAlign } from "./enums/STextAlign";
- import { STextBaseLine } from "./enums/STextBaseLine";
- import { STextDirection } from "./enums/STextDirection";
- export declare class SFont {
- name: string;
- size: number;
- textAlign: STextAlign;
- readonly textBaseLine = STextBaseLine.Top;
- textDirection: STextDirection;
- constructor();
- constructor(font: SFont);
- constructor(name: string, size?: number);
- }
|