Files
hoppscotch/packages/hoppscotch-common/src/platform/spotlight.ts
Andrew Bastin be57255bf7 refactor: update to dioc v3 (#4009)
Co-authored-by: jamesgeorge007 <jamesgeorge998001@gmail.com>
2024-04-29 19:06:18 +05:30

11 lines
275 B
TypeScript

import { Container, ServiceClassInstance } from "dioc"
import { SpotlightSearcher } from "~/services/spotlight"
export type SpotlightPlatformDef = {
additionalSearchers?: Array<
ServiceClassInstance<unknown> & {
new (c: Container): SpotlightSearcher
}
>
}