mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import type { MastoClient } from 'masto'
|
|
import type { AppStore } from '~~/plugins/store.client'
|
|
|
|
export function useMasto() {
|
|
return inject('masto') as Promise<MastoClient>
|
|
}
|
|
|
|
export function useAppStore() {
|
|
return inject('app-store') as AppStore
|
|
}
|