mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
import type { MastoClient } from 'masto'
|
|
import type { ClientState } from '~/plugins/store.client'
|
|
|
|
export function useMasto() {
|
|
return useNuxtApp().$masto as Promise<MastoClient>
|
|
}
|
|
|
|
export function useClientState() {
|
|
return useNuxtApp().$clientState as ClientState
|
|
}
|