Front end of the Slack clone application.

card-content.js 616B

1234567891011121314151617181920212223
  1. import { Directive, ElementRef, Renderer } from '@angular/core';
  2. import { Config } from '../../config/config';
  3. import { Ion } from '../ion';
  4. /**
  5. * @hidden
  6. */
  7. export class CardContent extends Ion {
  8. constructor(config, elementRef, renderer) {
  9. super(config, elementRef, renderer, 'card-content');
  10. }
  11. }
  12. CardContent.decorators = [
  13. { type: Directive, args: [{
  14. selector: 'ion-card-content'
  15. },] },
  16. ];
  17. /** @nocollapse */
  18. CardContent.ctorParameters = () => [
  19. { type: Config, },
  20. { type: ElementRef, },
  21. { type: Renderer, },
  22. ];
  23. //# sourceMappingURL=card-content.js.map