@visactor/vtable
Version:
canvas table width high performance
14 lines (13 loc) • 424 B
TypeScript
import { Text as VText, type ITextGraphicAttribute } from './../../vrender';
import type { BaseTableAPI } from '../../ts-types/base-table';
type ITextOption = {
marginTop?: number;
marginRight?: number;
marginBottom?: number;
marginLeft?: number;
} & ITextGraphicAttribute;
export declare class Text extends VText {
constructor(options: ITextOption);
getSize(table: BaseTableAPI): void;
}
export {};