virtual-footer.js 532B

12345678910111213141516171819
  1. import { Directive, TemplateRef } from '@angular/core';
  2. /**
  3. * @hidden
  4. */
  5. var VirtualFooter = (function () {
  6. function VirtualFooter(templateRef) {
  7. this.templateRef = templateRef;
  8. }
  9. VirtualFooter.decorators = [
  10. { type: Directive, args: [{ selector: '[virtualFooter]' },] },
  11. ];
  12. /** @nocollapse */
  13. VirtualFooter.ctorParameters = function () { return [
  14. { type: TemplateRef, },
  15. ]; };
  16. return VirtualFooter;
  17. }());
  18. export { VirtualFooter };
  19. //# sourceMappingURL=virtual-footer.js.map