a zip code crypto-currency system good for red ONLY

item-divider.js 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. var __extends = (this && this.__extends) || (function () {
  2. var extendStatics = Object.setPrototypeOf ||
  3. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  4. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  5. return function (d, b) {
  6. extendStatics(d, b);
  7. function __() { this.constructor = d; }
  8. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  9. };
  10. })();
  11. import { Directive, ElementRef, Renderer } from '@angular/core';
  12. import { Config } from '../../config/config';
  13. import { Ion } from '../ion';
  14. /**
  15. * @hidden
  16. */
  17. var ItemDivider = (function (_super) {
  18. __extends(ItemDivider, _super);
  19. function ItemDivider(config, elementRef, renderer) {
  20. return _super.call(this, config, elementRef, renderer, 'item-divider') || this;
  21. }
  22. ItemDivider.decorators = [
  23. { type: Directive, args: [{
  24. selector: 'ion-item-divider',
  25. host: {
  26. 'class': 'item-divider'
  27. }
  28. },] },
  29. ];
  30. /** @nocollapse */
  31. ItemDivider.ctorParameters = function () { return [
  32. { type: Config, },
  33. { type: ElementRef, },
  34. { type: Renderer, },
  35. ]; };
  36. return ItemDivider;
  37. }(Ion));
  38. export { ItemDivider };
  39. //# sourceMappingURL=item-divider.js.map