0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-05-12 21:52:48 +00:00
Files
Fernando Fernández 3003646fb1 feat(JFooter): create component
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2025-03-01 21:28:21 +01:00

8 lines
303 B
TypeScript

/**
* This file contains all the symbols used with provide/inject API:
* https://vuejs.org/guide/components/provide-inject.html#working-with-symbol-keys
*/
import type { InjectionKey, StyleValue, Ref } from 'vue';
export const JMain_style = Symbol('JMain:style') as InjectionKey<Ref<StyleValue[]>>;