@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
22 lines (21 loc) • 488 B
TypeScript
import { ResolvedUserIdentity, UserIdentity } from "./identities";
export interface ISocialReaction {
createdBy: UserIdentity;
createdAt?: string;
modifiedAt?: string;
createdByUser?: ResolvedUserIdentity;
reactionType?: ReactionType;
}
export declare enum ReactionType {
Like = 1,
Love = 2,
Laugh = 3,
Surprised = 4,
Sad = 5,
Angry = 6
}
export interface ISocialReactionStyling {
type: ReactionType;
title: string;
icon: string;
}