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