@amityco/ts-sdk-react-native
Version:
Amity Social Cloud Typescript SDK
20 lines • 640 B
TypeScript
export {};
declare global {
namespace Amity {
type RawLiveReaction = {
userId: string;
referenceId: string;
referencePublicId: string;
referenceType: string;
reactionName: string;
occurredAt: string;
};
type InternalLiveReaction = RawLiveReaction;
type LiveReaction = InternalLiveReaction;
type CreateLiveReactionRequest = Omit<RawLiveReaction, 'userId' | 'referenceId' | 'occurredAt'>;
type CreateLiveReactionResponse = {
addedIds: string[];
};
}
}
//# sourceMappingURL=liveReaction.d.ts.map