mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
29 lines
543 B
TypeScript
29 lines
543 B
TypeScript
import {Directive, TemplateRef, ViewContainerRef} from 'angular2/core';
|
|
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
@Directive({selector: '[virtualHeader]'})
|
|
export class VirtualHeader {
|
|
constructor(public templateRef: TemplateRef) {}
|
|
}
|
|
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
@Directive({selector: '[virtualFooter]'})
|
|
export class VirtualFooter {
|
|
constructor(public templateRef: TemplateRef) {}
|
|
}
|
|
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
@Directive({selector: '[virtualItem]'})
|
|
export class VirtualItem {
|
|
constructor(public templateRef: TemplateRef, public viewContainer: ViewContainerRef) {}
|
|
}
|