UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

23 lines (22 loc) 1.16 kB
import { OnVideoReactionName, OriginalReactionName, ReactionName, ReactionWithoutSkinTone, ReactionWithSkinTone, SkinTone } from './Reaction.types'; declare const CLASS_PREFIX = "md-reaction"; declare const GLYPH_NOT_FOUND: string; declare const DEFAULTS: { HIDE_LOADING_SPINNER: boolean; SIZE: number; }; declare const STYLE: { wrapper: string; notFound: string; loading: string; loaded: string; error: string; }; declare const ON_VIDEO_PREFIX = "on_video_"; declare const SKIN_TONES: Record<SkinTone, SkinTone>; declare const REACTIONS_WITH_SKIN_TONE: Record<ReactionWithSkinTone, ReactionWithSkinTone>; declare const REACTIONS_WITHOUT_SKIN_TONE: Record<ReactionWithoutSkinTone, ReactionWithoutSkinTone>; declare const ORIGINAL_REACTIONS: Record<OriginalReactionName, OriginalReactionName>; declare const ON_VIDEO_REACTIONS: Record<OnVideoReactionName, OnVideoReactionName>; declare const REACTIONS: Record<ReactionName, ReactionName>; export { CLASS_PREFIX, REACTIONS, DEFAULTS, SKIN_TONES, REACTIONS_WITH_SKIN_TONE, REACTIONS_WITHOUT_SKIN_TONE, ON_VIDEO_PREFIX, STYLE, ON_VIDEO_REACTIONS, ORIGINAL_REACTIONS, GLYPH_NOT_FOUND, };