mirror of https://github.com/elk-zone/elk.git
9 lines
280 B
TypeScript
9 lines
280 B
TypeScript
import type { InjectionKey, Ref } from 'vue'
|
|
import type { FontSize } from '~/types'
|
|
|
|
export const InjectionKeyFontSize: InjectionKey<Ref<FontSize>> = Symbol('font-size')
|
|
|
|
export const InjectionKeyDropdownContext: InjectionKey<{
|
|
hide: () => void
|
|
}> = Symbol('dropdown-context')
|