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
|
|
}
|