ng-cw-v12
Version:
Angular UI Component Library
19 lines (18 loc) • 858 B
TypeScript
import { OnInit } from '@angular/core';
import * as i0 from "@angular/core";
export declare type NcDirectionType = 'horizontal' | 'vertical';
export declare class AnimatedGradientTextComponent implements OnInit {
/** 文本内容 */
ncText: string;
/** 动画速度,值越大,动画速度越快 */
ncSpeed: number;
/** 渐变颜色数组 */
ncColors: string[];
/** 渐变方向 */
ncDirection: NcDirectionType;
constructor();
ngOnInit(): void;
get gradientColors(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<AnimatedGradientTextComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AnimatedGradientTextComponent, "nc-animated-gradient-text", never, { "ncText": "ncText"; "ncSpeed": "ncSpeed"; "ncColors": "ncColors"; "ncDirection": "ncDirection"; }, {}, never, never>;
}