tooot/src/utils/fetches/emojisFetch.ts

11 lines
213 B
TypeScript

import client from '@api/client'
export const emojisFetch = async () => {
const res = await client({
method: 'get',
instance: 'local',
url: 'custom_emojis'
})
return Promise.resolve(res.body)
}