import type { InjectionKey, Ref } from 'vue';

export const EXPANDED_SIDEBAR_KEY = Symbol() as InjectionKey<Ref<boolean>>;
export const TOGGLE_SIDEBAR_KEY = Symbol() as InjectionKey<() => void>;
export const SUB_ITEM_KEY = Symbol() as InjectionKey<boolean>;
export const STACKED_SHORTCUTS_KEY = Symbol() as InjectionKey<boolean>;
export const FOOTER_ITEM_KEY = Symbol() as InjectionKey<boolean>;
export const HIDE_MENU_KEY = Symbol() as InjectionKey<() => void>;
