2022-11-14 03:20:07 +01:00
|
|
|
import type { MastoClient } from 'masto'
|
2022-11-17 22:32:03 +01:00
|
|
|
import type { ClientState } from '~/plugins/store.client'
|
2022-11-13 06:34:43 +01:00
|
|
|
|
2022-11-14 03:20:07 +01:00
|
|
|
export function useMasto() {
|
2022-11-17 22:32:03 +01:00
|
|
|
return useNuxtApp().$masto as Promise<MastoClient>
|
2022-11-13 06:34:43 +01:00
|
|
|
}
|
2022-11-15 16:48:23 +01:00
|
|
|
|
2022-11-17 22:32:03 +01:00
|
|
|
export function useClientState() {
|
|
|
|
return useNuxtApp().$clientState as ClientState
|
2022-11-15 16:48:23 +01:00
|
|
|
}
|