chore: include pre-built dist for github install

This commit is contained in:
Robin Mordasiewicz
2026-03-14 04:56:50 +00:00
parent a7f0a4cf46
commit bce8ff3a75
1011 changed files with 150081 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import type { ResolvedServer } from "./types";
interface LspEntry {
disabled?: boolean;
command?: string[];
extensions?: string[];
priority?: number;
env?: Record<string, string>;
initialization?: Record<string, unknown>;
}
interface ConfigJson {
lsp?: Record<string, LspEntry>;
}
type ConfigSource = "project" | "user" | "opencode";
interface ServerWithSource extends ResolvedServer {
source: ConfigSource;
}
export declare function loadJsonFile<T>(path: string): T | null;
export declare function getConfigPaths(): {
project: string;
user: string;
opencode: string;
};
export declare function loadAllConfigs(): Map<ConfigSource, ConfigJson>;
export declare function getMergedServers(): ServerWithSource[];
export {};