@antv/s2
Version:
effective spreadsheet render core lib
10 lines (9 loc) • 348 B
TypeScript
import { Image, type DisplayObjectConfig, type ImageStyleProps } from '@antv/g';
/**
* 自定义 g Image 图形
*/
export declare class CustomImage extends Image {
/** 自定义 imgType (不能命名为 type,影响 g5.0 渲染) */
imgType: string;
constructor(imgType: string, options?: DisplayObjectConfig<ImageStyleProps>);
}