mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-27 18:36:52 +00:00
21 lines
654 B
TypeScript
21 lines
654 B
TypeScript
import type { Resources } from '@hcengineering/platform'
|
|
import EmojiPopup from './components/EmojiPopup.svelte'
|
|
import SettingsEmojiTable from './components/settings/SettingsEmojiTable.svelte'
|
|
import WorkbenchExtension from './components/WorkbenchExtension.svelte'
|
|
import { getCustomEmoji, getEmojiByEmoticon, getEmojiByShortCode } from './utils'
|
|
|
|
export * from './utils'
|
|
|
|
export default async (): Promise<Resources> => ({
|
|
component: {
|
|
EmojiPopup,
|
|
SettingsEmojiTable,
|
|
WorkbenchExtension
|
|
},
|
|
functions: {
|
|
GetEmojiByEmoticon: getEmojiByEmoticon,
|
|
GetEmojiByShortCode: getEmojiByShortCode,
|
|
GetCustomEmoji: getCustomEmoji
|
|
}
|
|
})
|