6 lines
277 B
TypeScript
6 lines
277 B
TypeScript
import type { UseDeviceTreeReturn } from '@/composables';
|
|
import { createInjectionKey } from '@/utils';
|
|
import { type Ref } from 'vue';
|
|
|
|
export const SELECT_DEVICE_FN_INJECTION_KEY = createInjectionKey<Ref<UseDeviceTreeReturn['selectDevice'] | undefined>>('select-device-fn');
|