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