2022-11-14 11:20:07 +09:00
|
|
|
import type { MastoClient } from 'masto'
|
2022-11-16 00:48:23 +09:00
|
|
|
import type { AppStore } from '~~/plugins/store.client'
|
2022-11-13 14:34:43 +09:00
|
|
|
|
2022-11-14 11:20:07 +09:00
|
|
|
export function useMasto() {
|
|
|
|
return inject('masto') as Promise<MastoClient>
|
2022-11-13 14:34:43 +09:00
|
|
|
}
|
2022-11-16 00:48:23 +09:00
|
|
|
|
|
|
|
export function useAppStore() {
|
|
|
|
return inject('app-store') as AppStore
|
|
|
|
}
|