1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-05 22:16:49 +01:00
elk/composables/client.ts
2022-11-14 10:20:07 +08:00

6 lines
122 B
TypeScript

import type { MastoClient } from 'masto'
export function useMasto() {
return inject('masto') as Promise<MastoClient>
}