Front end of the Slack clone application.

card.js 573B

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 Card extends Ion {
  8. constructor(config, elementRef, renderer) {
  9. super(config, elementRef, renderer, 'card');
  10. }
  11. }
  12. Card.decorators = [
  13. { type: Directive, args: [{
  14. selector: 'ion-card'
  15. },] },
  16. ];
  17. /** @nocollapse */
  18. Card.ctorParameters = () => [
  19. { type: Config, },
  20. { type: ElementRef, },
  21. { type: Renderer, },
  22. ];
  23. //# sourceMappingURL=card.js.map