neuro-cli 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +510 -0
- package/dist/advisor/advisor.d.ts +50 -0
- package/dist/advisor/advisor.js +178 -0
- package/dist/agents/base.d.ts +62 -0
- package/dist/agents/base.js +215 -0
- package/dist/agents/orchestrator.d.ts +46 -0
- package/dist/agents/orchestrator.js +192 -0
- package/dist/agents/team.d.ts +51 -0
- package/dist/agents/team.js +210 -0
- package/dist/api/models.d.ts +23 -0
- package/dist/api/models.js +514 -0
- package/dist/api/ollama.d.ts +153 -0
- package/dist/api/ollama.js +751 -0
- package/dist/api/openrouter.d.ts +55 -0
- package/dist/api/openrouter.js +223 -0
- package/dist/commands/commands.d.ts +43 -0
- package/dist/commands/commands.js +308 -0
- package/dist/config/config.d.ts +8 -0
- package/dist/config/config.js +311 -0
- package/dist/context/compaction.d.ts +54 -0
- package/dist/context/compaction.js +251 -0
- package/dist/context/custom-agents.d.ts +107 -0
- package/dist/context/custom-agents.js +397 -0
- package/dist/context/custom-tools.d.ts +120 -0
- package/dist/context/custom-tools.js +564 -0
- package/dist/context/git-checkpoint.d.ts +52 -0
- package/dist/context/git-checkpoint.js +240 -0
- package/dist/context/neuro-md.d.ts +48 -0
- package/dist/context/neuro-md.js +202 -0
- package/dist/context/neuroignore.d.ts +102 -0
- package/dist/context/neuroignore.js +441 -0
- package/dist/context/repo-map.d.ts +38 -0
- package/dist/context/repo-map.js +220 -0
- package/dist/context/skill-standard.d.ts +262 -0
- package/dist/context/skill-standard.js +1156 -0
- package/dist/context/skill-system.d.ts +75 -0
- package/dist/context/skill-system.js +578 -0
- package/dist/context/tree-sitter.d.ts +99 -0
- package/dist/context/tree-sitter.js +1956 -0
- package/dist/core/acp.d.ts +325 -0
- package/dist/core/acp.js +1498 -0
- package/dist/core/api-server.d.ts +143 -0
- package/dist/core/api-server.js +550 -0
- package/dist/core/approval.d.ts +81 -0
- package/dist/core/approval.js +432 -0
- package/dist/core/auto-compact.d.ts +127 -0
- package/dist/core/auto-compact.js +436 -0
- package/dist/core/auto-mode.d.ts +232 -0
- package/dist/core/auto-mode.js +831 -0
- package/dist/core/background-session.d.ts +166 -0
- package/dist/core/background-session.js +696 -0
- package/dist/core/cicd.d.ts +257 -0
- package/dist/core/cicd.js +1443 -0
- package/dist/core/cloud-sync.d.ts +156 -0
- package/dist/core/cloud-sync.js +582 -0
- package/dist/core/code-review.d.ts +132 -0
- package/dist/core/code-review.js +1191 -0
- package/dist/core/completion.d.ts +49 -0
- package/dist/core/completion.js +384 -0
- package/dist/core/context.d.ts +38 -0
- package/dist/core/context.js +144 -0
- package/dist/core/diff-preview.d.ts +35 -0
- package/dist/core/diff-preview.js +173 -0
- package/dist/core/doom-loop.d.ts +51 -0
- package/dist/core/doom-loop.js +179 -0
- package/dist/core/engine.d.ts +183 -0
- package/dist/core/engine.js +942 -0
- package/dist/core/extended-thinking.d.ts +103 -0
- package/dist/core/extended-thinking.js +269 -0
- package/dist/core/fallback.d.ts +54 -0
- package/dist/core/fallback.js +104 -0
- package/dist/core/git-worktree.d.ts +139 -0
- package/dist/core/git-worktree.js +614 -0
- package/dist/core/headless.d.ts +30 -0
- package/dist/core/headless.js +101 -0
- package/dist/core/i18n.d.ts +83 -0
- package/dist/core/i18n.js +739 -0
- package/dist/core/linting.d.ts +129 -0
- package/dist/core/linting.js +699 -0
- package/dist/core/model-router.d.ts +109 -0
- package/dist/core/model-router.js +581 -0
- package/dist/core/multi-model.d.ts +243 -0
- package/dist/core/multi-model.js +1099 -0
- package/dist/core/multi-session.d.ts +144 -0
- package/dist/core/multi-session.js +442 -0
- package/dist/core/multimodal.d.ts +125 -0
- package/dist/core/multimodal.js +286 -0
- package/dist/core/observability.d.ts +93 -0
- package/dist/core/observability.js +737 -0
- package/dist/core/os-sandbox.d.ts +122 -0
- package/dist/core/os-sandbox.js +1193 -0
- package/dist/core/outcome-grading.d.ts +228 -0
- package/dist/core/outcome-grading.js +1123 -0
- package/dist/core/output-styles.d.ts +57 -0
- package/dist/core/output-styles.js +382 -0
- package/dist/core/parallel-agents.d.ts +183 -0
- package/dist/core/parallel-agents.js +563 -0
- package/dist/core/plugin-bundle.d.ts +236 -0
- package/dist/core/plugin-bundle.js +887 -0
- package/dist/core/plugin-sdk.d.ts +139 -0
- package/dist/core/plugin-sdk.js +273 -0
- package/dist/core/prompt-cache.d.ts +163 -0
- package/dist/core/prompt-cache.js +599 -0
- package/dist/core/sandbox.d.ts +127 -0
- package/dist/core/sandbox.js +369 -0
- package/dist/core/scheduled-tasks.d.ts +151 -0
- package/dist/core/scheduled-tasks.js +502 -0
- package/dist/core/security-scanner.d.ts +160 -0
- package/dist/core/security-scanner.js +1494 -0
- package/dist/core/session.d.ts +83 -0
- package/dist/core/session.js +269 -0
- package/dist/core/shell-completion.d.ts +51 -0
- package/dist/core/shell-completion.js +674 -0
- package/dist/core/smart-monitor.d.ts +146 -0
- package/dist/core/smart-monitor.js +1199 -0
- package/dist/core/spec-driven.d.ts +233 -0
- package/dist/core/spec-driven.js +1485 -0
- package/dist/core/spending-warnings.d.ts +123 -0
- package/dist/core/spending-warnings.js +456 -0
- package/dist/core/sub-agent.d.ts +298 -0
- package/dist/core/sub-agent.js +1023 -0
- package/dist/core/telemetry.d.ts +157 -0
- package/dist/core/telemetry.js +412 -0
- package/dist/core/terminal-ux.d.ts +134 -0
- package/dist/core/terminal-ux.js +649 -0
- package/dist/core/testing.d.ts +146 -0
- package/dist/core/testing.js +1200 -0
- package/dist/core/types.d.ts +439 -0
- package/dist/core/types.js +6 -0
- package/dist/core/undo-redo.d.ts +112 -0
- package/dist/core/undo-redo.js +290 -0
- package/dist/core/updater.d.ts +159 -0
- package/dist/core/updater.js +608 -0
- package/dist/core/vim-mode.d.ts +151 -0
- package/dist/core/vim-mode.js +771 -0
- package/dist/core/voice.d.ts +137 -0
- package/dist/core/voice.js +538 -0
- package/dist/core/web-dashboard.d.ts +109 -0
- package/dist/core/web-dashboard.js +484 -0
- package/dist/hooks/hooks.d.ts +74 -0
- package/dist/hooks/hooks.js +160 -0
- package/dist/hooks/llm-evaluator.d.ts +165 -0
- package/dist/hooks/llm-evaluator.js +560 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1186 -0
- package/dist/lsp/lsp-manager.d.ts +63 -0
- package/dist/lsp/lsp-manager.js +351 -0
- package/dist/mcp/client.d.ts +133 -0
- package/dist/mcp/client.js +684 -0
- package/dist/mcp/mcp-apps.d.ts +70 -0
- package/dist/mcp/mcp-apps.js +1007 -0
- package/dist/tools/bash.d.ts +5 -0
- package/dist/tools/bash.js +195 -0
- package/dist/tools/browser.d.ts +92 -0
- package/dist/tools/browser.js +1570 -0
- package/dist/tools/extended.d.ts +6 -0
- package/dist/tools/extended.js +191 -0
- package/dist/tools/file.d.ts +10 -0
- package/dist/tools/file.js +382 -0
- package/dist/tools/github.d.ts +389 -0
- package/dist/tools/github.js +759 -0
- package/dist/tools/index.d.ts +9 -0
- package/dist/tools/index.js +40 -0
- package/dist/tools/memory.d.ts +6 -0
- package/dist/tools/memory.js +197 -0
- package/dist/tools/registry.d.ts +29 -0
- package/dist/tools/registry.js +64 -0
- package/dist/tools/web.d.ts +6 -0
- package/dist/tools/web.js +150 -0
- package/dist/ui/renderer.d.ts +97 -0
- package/dist/ui/renderer.js +279 -0
- package/dist/ui/theme.d.ts +27 -0
- package/dist/ui/theme.js +106 -0
- package/package.json +83 -0
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
export interface JsonRpcRequest {
|
|
2
|
+
jsonrpc: '2.0';
|
|
3
|
+
id: number | string | null;
|
|
4
|
+
method: string;
|
|
5
|
+
params?: Record<string, unknown> | unknown[];
|
|
6
|
+
}
|
|
7
|
+
export interface JsonRpcResponse {
|
|
8
|
+
jsonrpc: '2.0';
|
|
9
|
+
id: number | string | null;
|
|
10
|
+
result?: unknown;
|
|
11
|
+
error?: JsonRpcError;
|
|
12
|
+
}
|
|
13
|
+
export interface JsonRpcNotification {
|
|
14
|
+
jsonrpc: '2.0';
|
|
15
|
+
method: string;
|
|
16
|
+
params?: Record<string, unknown>;
|
|
17
|
+
}
|
|
18
|
+
export interface JsonRpcError {
|
|
19
|
+
code: number;
|
|
20
|
+
message: string;
|
|
21
|
+
data?: unknown;
|
|
22
|
+
}
|
|
23
|
+
export interface ACPConfig {
|
|
24
|
+
/** Whether ACP server is enabled */
|
|
25
|
+
enabled: boolean;
|
|
26
|
+
/** Transport mode: 'stdio' | 'websocket' | 'http' | 'all' */
|
|
27
|
+
transport: 'stdio' | 'websocket' | 'http' | 'all';
|
|
28
|
+
/** Host for HTTP/WS transport */
|
|
29
|
+
host: string;
|
|
30
|
+
/** Port for HTTP/WS transport */
|
|
31
|
+
port: number;
|
|
32
|
+
/** Require authentication */
|
|
33
|
+
requireAuth: boolean;
|
|
34
|
+
/** API key (auto-generated if not set) */
|
|
35
|
+
apiKey: string;
|
|
36
|
+
/** Maximum request body size in bytes for HTTP transport */
|
|
37
|
+
maxBodySize: number;
|
|
38
|
+
/** Request timeout in ms */
|
|
39
|
+
requestTimeout: number;
|
|
40
|
+
/** Whether to log protocol messages */
|
|
41
|
+
trace: boolean;
|
|
42
|
+
/** Allowed origins for WebSocket (CORS) */
|
|
43
|
+
corsOrigin: string;
|
|
44
|
+
}
|
|
45
|
+
export interface ACPServerCapabilities {
|
|
46
|
+
/** Supported text document operations */
|
|
47
|
+
textDocumentOperations: string[];
|
|
48
|
+
/** Supported workspace operations */
|
|
49
|
+
workspaceOperations: string[];
|
|
50
|
+
/** Supported agent operations */
|
|
51
|
+
agentOperations: string[];
|
|
52
|
+
/** Whether streaming is supported */
|
|
53
|
+
streaming: boolean;
|
|
54
|
+
/** Whether tool call notifications are supported */
|
|
55
|
+
toolNotifications: boolean;
|
|
56
|
+
/** Whether file change notifications are supported */
|
|
57
|
+
fileChangeNotifications: boolean;
|
|
58
|
+
/** Maximum concurrent agent sessions */
|
|
59
|
+
maxConcurrentSessions: number;
|
|
60
|
+
}
|
|
61
|
+
export interface ACPServerInfo {
|
|
62
|
+
name: string;
|
|
63
|
+
version: string;
|
|
64
|
+
protocolVersion: string;
|
|
65
|
+
}
|
|
66
|
+
export interface ACPCClientCapabilities {
|
|
67
|
+
/** Client supports streaming tokens */
|
|
68
|
+
streaming?: boolean;
|
|
69
|
+
/** Client supports tool call notifications */
|
|
70
|
+
toolNotifications?: boolean;
|
|
71
|
+
/** Client supports file change notifications */
|
|
72
|
+
fileChangeNotifications?: boolean;
|
|
73
|
+
/** Client name */
|
|
74
|
+
clientName?: string;
|
|
75
|
+
/** Client version */
|
|
76
|
+
clientVersion?: string;
|
|
77
|
+
}
|
|
78
|
+
export interface ACPSession {
|
|
79
|
+
/** Unique session ID */
|
|
80
|
+
id: string;
|
|
81
|
+
/** Client capabilities negotiated during initialize */
|
|
82
|
+
clientCapabilities: ACPCClientCapabilities;
|
|
83
|
+
/** Whether the session has been initialized */
|
|
84
|
+
initialized: boolean;
|
|
85
|
+
/** When the session was created */
|
|
86
|
+
createdAt: number;
|
|
87
|
+
/** Last activity timestamp */
|
|
88
|
+
lastActivity: number;
|
|
89
|
+
/** Transport type for this session */
|
|
90
|
+
transport: 'stdio' | 'websocket' | 'http';
|
|
91
|
+
/** Active agent operation ID (for cancel support) */
|
|
92
|
+
activeOperationId: string | null;
|
|
93
|
+
/** Abort controller for cancelling ongoing operations */
|
|
94
|
+
abortController: AbortController | null;
|
|
95
|
+
}
|
|
96
|
+
export interface TextDocumentEditParams {
|
|
97
|
+
/** File URI (file:///path/to/file) */
|
|
98
|
+
uri: string;
|
|
99
|
+
/** Edit operations to apply */
|
|
100
|
+
edits: TextEdit[];
|
|
101
|
+
}
|
|
102
|
+
export interface TextEdit {
|
|
103
|
+
/** Range to replace (line/column based) */
|
|
104
|
+
range: {
|
|
105
|
+
start: {
|
|
106
|
+
line: number;
|
|
107
|
+
character: number;
|
|
108
|
+
};
|
|
109
|
+
end: {
|
|
110
|
+
line: number;
|
|
111
|
+
character: number;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
/** New text to insert (replaces the range) */
|
|
115
|
+
newText: string;
|
|
116
|
+
}
|
|
117
|
+
export interface TextDocumentReadParams {
|
|
118
|
+
/** File URI */
|
|
119
|
+
uri: string;
|
|
120
|
+
}
|
|
121
|
+
export interface WorkspaceSearchParams {
|
|
122
|
+
/** Search query */
|
|
123
|
+
query: string;
|
|
124
|
+
/** File glob pattern to include */
|
|
125
|
+
include?: string;
|
|
126
|
+
/** File glob pattern to exclude */
|
|
127
|
+
exclude?: string;
|
|
128
|
+
/** Maximum results */
|
|
129
|
+
maxResults?: number;
|
|
130
|
+
}
|
|
131
|
+
export interface AgentPromptParams {
|
|
132
|
+
/** The prompt text */
|
|
133
|
+
prompt: string;
|
|
134
|
+
/** Execution mode */
|
|
135
|
+
mode?: 'auto' | 'agent' | 'direct';
|
|
136
|
+
/** Target agent name (for direct mode) */
|
|
137
|
+
agent?: string;
|
|
138
|
+
/** Whether to stream tokens */
|
|
139
|
+
stream?: boolean;
|
|
140
|
+
/** Model override */
|
|
141
|
+
model?: string;
|
|
142
|
+
/** Session ID to continue */
|
|
143
|
+
sessionId?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface AgentCancelParams {
|
|
146
|
+
/** Operation ID to cancel */
|
|
147
|
+
operationId: string;
|
|
148
|
+
}
|
|
149
|
+
export interface AgentStatusParams {
|
|
150
|
+
/** Optional session ID to check */
|
|
151
|
+
sessionId?: string;
|
|
152
|
+
}
|
|
153
|
+
export interface WorkspaceDiagnosticsParams {
|
|
154
|
+
/** Optional file URI to get diagnostics for */
|
|
155
|
+
uri?: string;
|
|
156
|
+
}
|
|
157
|
+
export interface GitStatusParams {
|
|
158
|
+
/** Working directory (defaults to engine cwd) */
|
|
159
|
+
workingDirectory?: string;
|
|
160
|
+
}
|
|
161
|
+
export interface AgentToolsParams {
|
|
162
|
+
/** Optional filter by category */
|
|
163
|
+
category?: string;
|
|
164
|
+
}
|
|
165
|
+
export interface StreamTokenParams {
|
|
166
|
+
/** The token text */
|
|
167
|
+
token: string;
|
|
168
|
+
/** Operation ID this token belongs to */
|
|
169
|
+
operationId: string;
|
|
170
|
+
/** Whether this is the final token */
|
|
171
|
+
done?: boolean;
|
|
172
|
+
}
|
|
173
|
+
export interface ToolCallParams {
|
|
174
|
+
/** Tool name */
|
|
175
|
+
toolName: string;
|
|
176
|
+
/** Tool arguments */
|
|
177
|
+
arguments: Record<string, unknown>;
|
|
178
|
+
/** Operation ID */
|
|
179
|
+
operationId: string;
|
|
180
|
+
/** Tool call ID */
|
|
181
|
+
toolCallId: string;
|
|
182
|
+
}
|
|
183
|
+
export interface ToolResultParams {
|
|
184
|
+
/** Tool call ID */
|
|
185
|
+
toolCallId: string;
|
|
186
|
+
/** Result content */
|
|
187
|
+
content: string;
|
|
188
|
+
/** Whether the result is an error */
|
|
189
|
+
isError?: boolean;
|
|
190
|
+
/** Operation ID */
|
|
191
|
+
operationId: string;
|
|
192
|
+
}
|
|
193
|
+
export interface FileChangedParams {
|
|
194
|
+
/** File URI that was changed */
|
|
195
|
+
uri: string;
|
|
196
|
+
/** Type of change */
|
|
197
|
+
changeType: 'created' | 'modified' | 'deleted';
|
|
198
|
+
/** Optional diff content */
|
|
199
|
+
diff?: string;
|
|
200
|
+
}
|
|
201
|
+
export interface AgentCompletedParams {
|
|
202
|
+
/** Operation ID */
|
|
203
|
+
operationId: string;
|
|
204
|
+
/** Final response content */
|
|
205
|
+
content: string;
|
|
206
|
+
/** Token usage */
|
|
207
|
+
usage?: {
|
|
208
|
+
inputTokens: number;
|
|
209
|
+
outputTokens: number;
|
|
210
|
+
cost: number;
|
|
211
|
+
};
|
|
212
|
+
/** Whether the operation was cancelled */
|
|
213
|
+
cancelled?: boolean;
|
|
214
|
+
}
|
|
215
|
+
export interface AgentErrorParams {
|
|
216
|
+
/** Operation ID */
|
|
217
|
+
operationId: string;
|
|
218
|
+
/** Error message */
|
|
219
|
+
message: string;
|
|
220
|
+
/** Error code */
|
|
221
|
+
code?: number;
|
|
222
|
+
}
|
|
223
|
+
export declare class ACPServer {
|
|
224
|
+
private config;
|
|
225
|
+
private engine;
|
|
226
|
+
private sessions;
|
|
227
|
+
private connections;
|
|
228
|
+
private httpServer;
|
|
229
|
+
private wsTransport;
|
|
230
|
+
private stdioTransport;
|
|
231
|
+
private isRunning;
|
|
232
|
+
private startTime;
|
|
233
|
+
private requestCount;
|
|
234
|
+
private operationCounter;
|
|
235
|
+
private readonly serverCapabilities;
|
|
236
|
+
private readonly serverInfo;
|
|
237
|
+
constructor(engine: any, config?: Partial<ACPConfig>);
|
|
238
|
+
/**
|
|
239
|
+
* Start the ACP server on configured transports
|
|
240
|
+
*/
|
|
241
|
+
start(): Promise<void>;
|
|
242
|
+
/**
|
|
243
|
+
* Stop the ACP server gracefully
|
|
244
|
+
*/
|
|
245
|
+
stop(): Promise<void>;
|
|
246
|
+
/**
|
|
247
|
+
* Check if server is running
|
|
248
|
+
*/
|
|
249
|
+
getIsRunning(): boolean;
|
|
250
|
+
/**
|
|
251
|
+
* Get server configuration
|
|
252
|
+
*/
|
|
253
|
+
getConfig(): ACPConfig;
|
|
254
|
+
/**
|
|
255
|
+
* Get server statistics
|
|
256
|
+
*/
|
|
257
|
+
getStats(): {
|
|
258
|
+
isRunning: boolean;
|
|
259
|
+
uptime: number;
|
|
260
|
+
requestCount: number;
|
|
261
|
+
activeSessions: number;
|
|
262
|
+
activeConnections: number;
|
|
263
|
+
transport: string;
|
|
264
|
+
};
|
|
265
|
+
/**
|
|
266
|
+
* Print server status to console
|
|
267
|
+
*/
|
|
268
|
+
printStatus(): void;
|
|
269
|
+
/**
|
|
270
|
+
* Handle an incoming JSON-RPC request
|
|
271
|
+
*/
|
|
272
|
+
handleRequest(request: JsonRpcRequest, sessionId?: string): Promise<JsonRpcResponse>;
|
|
273
|
+
/**
|
|
274
|
+
* Handle an incoming JSON-RPC notification
|
|
275
|
+
*/
|
|
276
|
+
handleNotification(notification: JsonRpcNotification, sessionId?: string): void;
|
|
277
|
+
/**
|
|
278
|
+
* Parse a raw JSON-RPC message string and route appropriately
|
|
279
|
+
*/
|
|
280
|
+
handleMessage(raw: string, sessionId?: string): Promise<JsonRpcResponse | null>;
|
|
281
|
+
/**
|
|
282
|
+
* Send a notification to all connected clients
|
|
283
|
+
*/
|
|
284
|
+
notifyClients(method: string, params: Record<string, unknown>): void;
|
|
285
|
+
/**
|
|
286
|
+
* Send a notification to a specific client by session ID
|
|
287
|
+
*/
|
|
288
|
+
notifyClient(sessionId: string, method: string, params: Record<string, unknown>): void;
|
|
289
|
+
private routeMethod;
|
|
290
|
+
private handleInitialize;
|
|
291
|
+
private handleShutdown;
|
|
292
|
+
private handleTextDocumentEdit;
|
|
293
|
+
private handleTextDocumentRead;
|
|
294
|
+
private handleWorkspaceSearch;
|
|
295
|
+
private handleWorkspaceDiagnostics;
|
|
296
|
+
private handleAgentPrompt;
|
|
297
|
+
private handleAgentCancel;
|
|
298
|
+
private handleAgentStatus;
|
|
299
|
+
private handleAgentTools;
|
|
300
|
+
private handleGitStatus;
|
|
301
|
+
private startStdio;
|
|
302
|
+
private startHttpServer;
|
|
303
|
+
private handleHttpRequest;
|
|
304
|
+
private parseHttpBody;
|
|
305
|
+
private resolveHttpSession;
|
|
306
|
+
private handleWsConnect;
|
|
307
|
+
private handleWsDisconnect;
|
|
308
|
+
private handleWsMessage;
|
|
309
|
+
private createSessionId;
|
|
310
|
+
private removeSession;
|
|
311
|
+
private removeConnection;
|
|
312
|
+
private findSessionByOperation;
|
|
313
|
+
private cancelOperation;
|
|
314
|
+
private detectTransportFromSession;
|
|
315
|
+
private successResponse;
|
|
316
|
+
private errorResponse;
|
|
317
|
+
private uriToPath;
|
|
318
|
+
private pathToUri;
|
|
319
|
+
private languageIdFromPath;
|
|
320
|
+
private saveConfig;
|
|
321
|
+
private loadConfig;
|
|
322
|
+
private log;
|
|
323
|
+
}
|
|
324
|
+
export declare function startACPServer(engine: any, config?: Partial<ACPConfig>): Promise<ACPServer>;
|
|
325
|
+
//# sourceMappingURL=acp.d.ts.map
|