UNPKG

@salla.sa/twilight-components

Version:
18 lines (17 loc) 441 B
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; }