a zip code crypto-currency system good for red ONLY

virtual-item.js 513B

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