@visactor/vtable
Version:
canvas table width high performance
15 lines (14 loc) • 436 B
TypeScript
import type { TagAttributes } from './../../vrender';
import { Tag as VTag } from './../../vrender';
import type { BaseTableAPI } from '../../ts-types/base-table';
type ITagOption = {
marginTop?: number;
marginRight?: number;
marginBottom?: number;
marginLeft?: number;
} & TagAttributes;
export declare class Tag extends VTag {
constructor(options: ITagOption);
getSize(table: BaseTableAPI): void;
}
export {};