11 lines
260 B
TypeScript
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
|
|
}
|
|
>
|
|
}
|