mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-31 22:50:43 +00:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
![]() |
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
import type { InjectionKey, Ref } from 'vue';
|
||
|
import type { IRouter } from '@/nirax.js';
|
||
|
|
||
|
export const DI = {
|
||
|
routerCurrentDepth: Symbol() as InjectionKey<number>,
|
||
|
router: Symbol() as InjectionKey<IRouter>,
|
||
|
};
|