7 lines
266 B
TypeScript
7 lines
266 B
TypeScript
import type { KbxLookupProvider } from '@kbx/contracts'
|
|
import type { InjectionKey } from 'vue'
|
|
|
|
export type KbxLookupRegistry = Record<string, KbxLookupProvider<any>>
|
|
|
|
export const kbxLookupRegistryKey: InjectionKey<KbxLookupRegistry> = Symbol('kbxLookupRegistry')
|