canvas-editor-pdf
Version:
pdf exporter to canvas-editor
17 lines (15 loc) • 385 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;
}