mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
29 lines
567 B
TypeScript
29 lines
567 B
TypeScript
import {Directive, TemplateRef, ViewContainerRef} from '@angular/core';
|
|
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
@Directive({selector: '[virtualHeader]'})
|
|
export class VirtualHeader {
|
|
constructor(public templateRef: TemplateRef<Object>) {}
|
|
}
|
|
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
@Directive({selector: '[virtualFooter]'})
|
|
export class VirtualFooter {
|
|
constructor(public templateRef: TemplateRef<Object>) {}
|
|
}
|
|
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
@Directive({selector: '[virtualItem]'})
|
|
export class VirtualItem {
|
|
constructor(public templateRef: TemplateRef<Object>, public viewContainer: ViewContainerRef) {}
|
|
}
|