UNPKG

@mai3/phaser-sdk

Version:

A UI component library based on the Phaser game engine

18 lines 493 B
import { BaseConfig } from "../base/BaseConfig"; import { TextStyle } from "../common"; export interface CheckboxConfig extends BaseConfig { x?: number; y?: number; iconWidth: number; iconHeight: number; unCheckedTexture: string; checkedTexture: string; isCircle?: boolean; isChecked?: boolean; text?: string; value?: string; textStyle?: TextStyle; labelSpace?: number; handleSelect?: Function; } //# sourceMappingURL=CheckboxConfig.d.ts.map