shape.d.ts 240 B

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