@mai3/phaser-sdk
Version:
A UI component library based on the Phaser game engine
12 lines • 348 B
TypeScript
import { BaseConfig } from "../base/BaseConfig";
import { TextStyle } from "../common";
export interface TextConfig extends BaseConfig {
text?: string;
textAlign?: string;
isWordWrap?: boolean;
autoWidth?: boolean;
autoHeight?: boolean;
textStyle?: TextStyle;
isShow?: boolean;
}
//# sourceMappingURL=TextConfig.d.ts.map