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