card-content.js 1.3KB

123456789101112131415161718192021222324252627282930313233343536
  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 CardContent = (function (_super) {
  18. __extends(CardContent, _super);
  19. function CardContent(config, elementRef, renderer) {
  20. return _super.call(this, config, elementRef, renderer, 'card-content') || this;
  21. }
  22. CardContent.decorators = [
  23. { type: Directive, args: [{
  24. selector: 'ion-card-content'
  25. },] },
  26. ];
  27. /** @nocollapse */
  28. CardContent.ctorParameters = function () { return [
  29. { type: Config, },
  30. { type: ElementRef, },
  31. { type: Renderer, },
  32. ]; };
  33. return CardContent;
  34. }(Ion));
  35. export { CardContent };
  36. //# sourceMappingURL=card-content.js.map