ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular
17 lines • 413 B
JavaScript
import { Directive, TemplateRef } from '@angular/core';
/**
* @hidden
*/
export class VirtualHeader {
constructor(templateRef) {
this.templateRef = templateRef;
}
}
VirtualHeader.decorators = [
{ type: Directive, args: [{ selector: '[virtualHeader]' },] },
];
/** @nocollapse */
VirtualHeader.ctorParameters = () => [
{ type: TemplateRef, },
];
//# sourceMappingURL=virtual-header.js.map