@salla.sa/twilight-components
Version:
Salla Web Component
18 lines (17 loc) • 441 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
import { Prize } from './interfaces';
export declare class SallaRewardCard {
/**
* The prize item
*/
prize: Prize;
/**
* Callback to be called when the area is clicked
*/
areaClick: EventEmitter<MouseEvent>;
/**
* Callback to be called when the action is clicked
*/
actionClick: EventEmitter<MouseEvent>;
render(): any;
}