igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
19 lines (15 loc) • 425 B
text/typescript
import { Directive, TemplateRef } from '@angular/core';
({
selector: '[igxProgressBarText]',
standalone: true
})
export class IgxProgressBarTextTemplateDirective {
constructor(public template: TemplateRef<any>) { }
}
({
selector: '[igxProgressBarGradient]',
standalone: true
})
export class IgxProgressBarGradientDirective {
constructor(public template: TemplateRef<any>) { }
}