UNPKG

@visactor/vtable

Version:

canvas table width high performance

15 lines (14 loc) 500 B
import type { IGroupGraphicAttribute } from './../../vrender'; import { Group } from './../../vrender'; import type { percentCalcObj } from './percent-calc'; export type IContainerOptions = { width?: number | percentCalcObj; height?: number | percentCalcObj; marginTop?: number; marginRight?: number; marginBottom?: number; marginLeft?: number; } & IGroupGraphicAttribute; export declare class Container extends Group { constructor(containerOptions: IContainerOptions); }