UNPKG

240 BTypeScriptView Raw
1import { AttributeCfg } from '../interface';
2import Attribute from './base';
3export default class Shape extends Attribute {
4 constructor(cfg: AttributeCfg);
5 /**
6 * @override
7 */
8 getLinearValue(percent: number): string;
9}