@hufe921/canvas-editor
Version:
rich text editor by canvas/svg
16 lines (15 loc) • 369 B
TypeScript
import { VerticalAlign } from '../dataset/enum/VerticalAlign';
export interface ICheckbox {
value: boolean | null;
code?: string;
disabled?: boolean;
}
export interface ICheckboxOption {
width?: number;
height?: number;
gap?: number;
lineWidth?: number;
fillStyle?: string;
strokeStyle?: string;
verticalAlign?: VerticalAlign;
}