mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-05-12 21:52:48 +00:00
8 lines
303 B
TypeScript
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[]>>;
|