utils.d.ts 616 B

1234567891011121314
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { NzProgressColorGradient, NzProgressGradientProgress } from './typings';
  6. export declare const sortGradient: (gradients: NzProgressGradientProgress) => Array<{
  7. key: number;
  8. value: string;
  9. }>;
  10. export declare const handleCircleGradient: (strokeColor: NzProgressGradientProgress) => Array<{
  11. offset: string;
  12. color: string;
  13. }>;
  14. export declare const handleLinearGradient: (strokeColor: NzProgressColorGradient) => string;