@visactor/vtable
Version:
canvas table width high performance
13 lines (12 loc) • 363 B
TypeScript
import type { IGroupGraphicAttribute } from './../../vrender';
import { Group as VGroup } from './../../vrender';
type IGroupOption = {
marginTop?: number;
marginRight?: number;
marginBottom?: number;
marginLeft?: number;
} & IGroupGraphicAttribute;
export declare class Group extends VGroup {
constructor(options: IGroupOption);
}
export {};