@visactor/vtable
Version:
canvas table width high performance
22 lines (21 loc) • 572 B
TypeScript
import type { IImageGraphicAttribute } from './../../vrender';
import { Image } from './../../vrender';
import type { ColumnIconOption } from '../../ts-types';
type IIconOptions = {
width: number;
height: number;
svg?: string;
iconName?: string;
marginTop?: number;
marginRight?: number;
marginBottom?: number;
marginLeft?: number;
} & IImageGraphicAttribute;
export declare class Icon extends Image {
id: string;
svg: string;
iconName: string;
cache?: ColumnIconOption;
constructor(options: IIconOptions);
}
export {};