import { UserReward } from '../../entities'; export interface IRewardTemplate { type: string; definitionType: I['type']; config: I['config']; iconUrl: string; title: string; description: string; } export interface IRewardTemplateCreate { definitionType: I['type']; config: I['config']; iconUrl: string; title: string; description: string; }