/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ import type { InjectionKey } from 'vue'; import * as Misskey from 'misskey-js'; import { MediaProxy } from '@@/js/media-proxy.js'; import type { ParsedEmbedParams } from '@@/js/embed-page.js'; export const DI = { serverMetadata: Symbol() as InjectionKey, embedParams: Symbol() as InjectionKey, mediaProxy: Symbol() as InjectionKey, };