PPTist/src/types/injectKey.ts
2022-04-09 13:37:58 +08:00

7 lines
246 B
TypeScript

import { InjectionKey, Ref } from 'vue'
export type SlideScale = Ref<number>
export type SlideId = Ref<string>
export const injectKeySlideScale: InjectionKey<SlideScale> = Symbol()
export const injectKeySlideId: InjectionKey<SlideId> = Symbol()