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