Files
hoppscotch/packages/hoppscotch-common/src/platform/spotlight.ts

11 lines
260 B
TypeScript

import { Service } from "dioc"
import { SpotlightSearcher } from "~/services/spotlight"
export type SpotlightPlatformDef = {
additionalSearchers?: Array<
typeof Service<unknown> & { ID: string } & {
new (): Service & SpotlightSearcher
}
>
}