@claromentis/design-system
Version:
Claromentis Design System Component Library
25 lines (24 loc) • 501 B
TypeScript
import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime';
export declare class Cardimage implements ComponentInterface {
/**
* The Host element
**/
el: HTMLElement;
/**
* Image URL
*/
img: string;
/**
* The image alternative text.
*/
alt: string;
/**
* Emitted when nav item loads.
*/
claImgDidLoad: EventEmitter;
private ispreserveaspect;
private preserveaspect;
componentDidLoad(): void;
componentWillLoad(): void;
render(): any;
}