/** * OpenCode ADO Plugin — V1 Module Entry Point. * * * Server module — PR workflow tools * TUI module — sidebar panel * * Config in opencode.json: * ```jsonc * { * "ado": { * "defaultProfile": "work", * "profiles": { * "work": { * "org": "myorg", * "project": "myproject", * "patEnvVar": "ADO_PAT", * "repos": ["backend", "frontend"] * } * } * } * } * ``` * * Tool execute bodies delegate to ./cli-commands.ts so the plugin and the * `ado` CLI share one implementation and produce identical output. */ import type { Plugin, PluginModule } from "@opencode-ai/plugin"; declare const server: Plugin; declare const pluginModule: PluginModule & { id: string; }; export default pluginModule; export { server }; //# sourceMappingURL=index.d.ts.map