mirror of
https://github.com/elk-zone/elk.git
synced 2025-02-18 00:09:48 +03:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import type { MastoClient } from 'masto'
|
|
|
|
export const useMasto = () => useNuxtApp().$masto.api
|
|
|
|
export const setMasto = (masto: MastoClient) => {
|
|
useNuxtApp().$masto?.replace(masto)
|
|
}
|