projects/i-components/src/lib/directives/radRibbonGalleryItemDirective.directive.ts
RadRibbonGalleryItemDirective used to check all gallery items
Selector | [wmRadRibbonGalleryItem] |
Properties |
|
constructor(template: TemplateRef
|
||||||
Creates an instance of RadRibbonGalleryItemDirective.
Parameters :
|
Public template |
Type : TemplateRef<any>
|
import { Directive, TemplateRef } from '@angular/core';
/**
* RadRibbonGalleryItemDirective used to check all gallery items
*
* @export
* @class RadRibbonGalleryItemDirective
*/
@Directive({
selector: '[wmRadRibbonGalleryItem]',
})
export class RadRibbonGalleryItemDirective {
/**
* Creates an instance of RadRibbonGalleryItemDirective.
*
* @param {TemplateRef<any>} template
* @memberof RadRibbonGalleryItemDirective
*/
constructor(public template: TemplateRef<any>) {}
}