UNPKG

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