Compare commits

...

1 Commits

Author SHA1 Message Date
Kit Langton 75cbba355e refactor: unwrap PluginLoader namespace + self-reexport 2026-04-16 19:53:44 -04:00
+2 -2
View File
@@ -11,7 +11,6 @@ import {
import { ConfigPlugin } from "@/config/plugin"
import { InstallationVersion } from "@/installation/version"
export namespace PluginLoader {
export type Plan = {
spec: string
options: ConfigPlugin.Options | undefined
@@ -171,4 +170,5 @@ export namespace PluginLoader {
for (const item of out) if (item !== undefined) ready.push(item)
return ready
}
}
export * as PluginLoader from "./loader"