UNPKG

ionic-angular

Version:

A powerful framework for building mobile and progressive web apps with JavaScript and Angular

39 lines 840 B
import { Directive, ElementRef, Renderer } from '@angular/core'; import { Config } from '../../config/config'; import { Ion } from '../ion'; /** * @hidden */ export class Card extends Ion { /** * @param {?} config * @param {?} elementRef * @param {?} renderer */ constructor(config, elementRef, renderer) { super(config, elementRef, renderer, 'card'); } } Card.decorators = [ { type: Directive, args: [{ selector: 'ion-card' },] }, ]; /** * @nocollapse */ Card.ctorParameters = () => [ { type: Config, }, { type: ElementRef, }, { type: Renderer, }, ]; function Card_tsickle_Closure_declarations() { /** @type {?} */ Card.decorators; /** * @nocollapse * @type {?} */ Card.ctorParameters; } //# sourceMappingURL=card.js.map