5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
import type { InjectionKey, Ref } from 'vue'
|
|
import type { FontSize } from '~/types'
|
|
|
|
export const InjectionKeyFontSize = Symbol('font-size') as InjectionKey<Ref<FontSize>>
|