frontend/composables/CustomEmojis.ts
2024-05-12 17:44:32 -10:00

8 lines
266 B
TypeScript

import type { Mastodon } from "megalodon";
import type { Emoji } from "~/types/mastodon/emoji";
export const useCustomEmojis = (client: MaybeRef<Mastodon | null>) => {
// Cache in localStorage
return useLocalStorage<Emoji[]>("lysand:custom_emojis", []);
};