mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
7 lines
246 B
TypeScript
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() |