-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
421 lines (398 loc) · 11.3 KB
/
Copy pathenv.d.ts
File metadata and controls
421 lines (398 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
declare const MACRO: {
VERSION: string;
BUILD_TIME: string;
PACKAGE_URL?: string;
NATIVE_PACKAGE_URL?: string;
FEEDBACK_CHANNEL?: string;
ISSUES_EXPLAINER?: string;
VERSION_CHANGELOG?: string;
};
declare module "*.node" {
const value: unknown;
export default value;
}
declare module "@ant/computer-use-mcp" {
export const API_RESIZE_PARAMS: Record<string, unknown>;
export function targetImageSize(
physW: number,
physH: number,
params: Record<string, unknown>,
): [number, number];
export function buildComputerUseTools(
capabilities: any,
coordinateMode: any,
installedAppNames?: string[],
): any[];
export function createComputerUseMcpServer(
adapter: any,
coordinateMode: any,
): any;
export function bindSessionContext(
adapter: any,
coordinateMode: any,
ctx: any,
): (name: string, args: unknown) => Promise<any>;
export type ComputerUseSessionContext = Record<string, unknown>;
export type CuCallToolResult = {
content: any[];
isError?: boolean;
telemetry?: { error_kind?: string };
};
export type CuPermissionRequest = {
toolName: string;
input: Record<string, unknown>;
};
export type CuPermissionResponse = {
granted: any[];
denied: any[];
flags: any;
};
export const DEFAULT_GRANT_FLAGS: any;
export type ScreenshotDims = {
width: number;
height: number;
displayWidth?: number;
displayHeight?: number;
displayId?: number;
originX?: number;
originY?: number;
};
export type ComputerExecutor = {
capabilities: any;
prepareForAction(
allowlistBundleIds: string[],
displayId?: number,
): Promise<string[]>;
previewHideSet(
allowlistBundleIds: string[],
displayId?: number,
): Promise<Array<{ bundleId: string; displayName: string }>>;
getDisplaySize(displayId?: number): Promise<DisplayGeometry>;
listDisplays(): Promise<DisplayGeometry[]>;
findWindowDisplays(
bundleIds: string[],
): Promise<Array<{ bundleId: string; displayIds: number[] }>>;
resolvePrepareCapture(opts: any): Promise<ResolvePrepareCaptureResult>;
screenshot(opts: any): Promise<ScreenshotResult>;
zoom(
regionLogical: any,
allowedBundleIds: string[],
displayId?: number,
): Promise<{ base64: string; width: number; height: number }>;
key(keySequence: string, repeat?: number): Promise<void>;
holdKey(keyNames: string[], durationMs: number): Promise<void>;
type(text: string, opts: { viaClipboard: boolean }): Promise<void>;
readClipboard(): Promise<string>;
writeClipboard(text: string): Promise<void>;
moveMouse(x: number, y: number): Promise<void>;
click(
x: number,
y: number,
button: string,
count: number,
modifiers?: string[],
): Promise<void>;
mouseDown(): Promise<void>;
mouseUp(): Promise<void>;
getCursorPosition(): Promise<{ x: number; y: number }>;
drag(from: any, to: any): Promise<void>;
scroll(x: number, y: number, dx: number, dy: number): Promise<void>;
getFrontmostApp(): Promise<FrontmostApp | null>;
appUnderPoint(
x: number,
y: number,
): Promise<{ bundleId: string; displayName: string } | null>;
listInstalledApps(): Promise<InstalledApp[]>;
getAppIcon(path: string): Promise<string | undefined>;
listRunningApps(): Promise<RunningApp[]>;
openApp(bundleId: string): Promise<void>;
};
export type DisplayGeometry = {
width: number;
height: number;
scaleFactor: number;
x?: number;
y?: number;
};
export type FrontmostApp = {
bundleId: string;
displayName?: string;
name?: string;
pid?: number;
};
export type InstalledApp = {
bundleId: string;
displayName?: string;
path?: string;
};
export type RunningApp = { bundleId: string; displayName?: string };
export type ScreenshotResult = {
base64?: string;
data?: string;
width: number;
height: number;
displayId?: number;
};
export type ResolvePrepareCaptureResult = {
hidden: string[];
activated?: string;
displayId?: number;
geometry?: DisplayGeometry;
};
}
declare module "@ant/computer-use-mcp/types" {
export type CoordinateMode = "pixels" | "normalized";
export type CuSubGates = {
pixelValidation: boolean;
clipboardPasteMultiline: boolean;
mouseAnimation: boolean;
hideBeforeAction: boolean;
autoTargetDisplay: boolean;
clipboardGuard: boolean;
};
export type ComputerUseHostAdapter = {
serverName: string;
logger: Logger;
executor: any;
ensureOsPermissions: () => Promise<{
granted: boolean;
accessibility?: boolean;
screenRecording?: boolean;
}>;
isDisabled: () => boolean;
getSubGates: () => any;
getAutoUnhideEnabled: () => boolean;
cropRawPatch: () => null;
};
// Re-export Logger so it's available from this module too
export type Logger = {
silly(message: string, ...args: unknown[]): void;
debug(message: string, ...args: unknown[]): void;
info(message: string, ...args: unknown[]): void;
warn(message: string, ...args: unknown[]): void;
error(message: string, ...args: unknown[]): void;
};
}
declare module "image-processor-napi" {
export function processImage(
input: Buffer | Uint8Array,
options?: Record<string, unknown>,
): Promise<Buffer>;
}
declare module "url-handler-napi" {
export function registerHandler(callback: (url: string) => void): void;
export function unregisterHandler(): void;
}
declare module "modifiers-napi" {
export function getModifiers(): number;
}
declare module "audio-capture-napi" {
export function startCapture(
options?: Record<string, unknown>,
): Promise<unknown>;
export function stopCapture(): Promise<void>;
}
declare module "@ant/computer-use-swift" {
interface ComputerUseAPI {
apps: {
prepareDisplay(
allowlist: string[],
host: string,
displayId?: number,
): Promise<{ hidden: string[]; activated?: string }>;
previewHideSet(
allowlist: string[],
displayId?: number,
): Promise<Array<{ bundleId: string; displayName: string }>>;
findWindowDisplays(
bundleIds: string[],
): Promise<Array<{ bundleId: string; displayIds: number[] }>>;
listInstalled(): Promise<
Array<{ bundleId: string; displayName: string; path: string }>
>;
iconDataUrl(path: string): string | null;
listRunning(): Promise<Array<{ bundleId: string; displayName: string }>>;
open(bundleId: string): Promise<void>;
unhide(bundleIds: string[]): Promise<void>;
appUnderPoint(
x: number,
y: number,
): Promise<{ bundleId: string; displayName: string } | null>;
};
display: {
getSize(displayId?: number): {
width: number;
height: number;
scaleFactor: number;
};
listAll(): Array<{ width: number; height: number; scaleFactor: number }>;
};
screenshot: {
captureExcluding(
allowlist: string[],
quality: number,
w: number,
h: number,
displayId?: number,
): Promise<{ base64: string; width: number; height: number }>;
captureRegion(
allowlist: string[],
x: number,
y: number,
w: number,
h: number,
outW: number,
outH: number,
quality: number,
displayId?: number,
): Promise<{ base64: string; width: number; height: number }>;
};
resolvePrepareCapture(
allowlist: string[],
host: string,
quality: number,
w: number,
h: number,
displayId: number | undefined,
autoResolve: boolean,
doHide?: boolean,
): Promise<{ hidden: string[]; activated?: string }>;
tcc: {
checkAccessibility(): boolean;
checkScreenRecording(): boolean;
};
hotkey: {
registerEscape(callback: () => void): boolean;
unregister(): void;
notifyExpectedEscape(): void;
};
_drainMainRunLoop(): void;
}
const _mod: ComputerUseAPI;
export default _mod;
export type ComputerUseAPI = ComputerUseAPI;
}
declare module "@ant/computer-use-input" {
interface ComputerUseInputAPI {
moveMouse(x: number, y: number, animated: boolean): Promise<void>;
mouseLocation(): Promise<{ x: number; y: number }>;
mouseButton(button: string, action: string, count?: number): Promise<void>;
mouseScroll(delta: number, direction: string): Promise<void>;
key(key: string, action: string): Promise<void>;
keys(parts: string[]): Promise<void>;
typeText(text: string): Promise<void>;
getFrontmostAppInfo(): { bundleId: string; appName: string } | null;
}
type ComputerUseInput = ComputerUseInputAPI & { isSupported: boolean };
const _mod: ComputerUseInput;
export default _mod;
export type { ComputerUseInput, ComputerUseInputAPI };
}
declare module "@ant/claude-for-chrome-mcp" {
const _mod: unknown;
export default _mod;
}
declare module "@ant/computer-use-mcp/sentinelApps" {
export const sentinelAppNames: string[];
export const SENTINEL_APPS: string[];
}
declare module "react/compiler-runtime" {
export function c(size: number): any[];
}
declare module "audio-capture-napi" {
export function startCapture(
options?: Record<string, unknown>,
): Promise<unknown>;
export function stopCapture(): Promise<Buffer>;
}
// Stripped internal modules from Anthropic fork
declare module "./utils/debug.js" {
export function logForDebugging(
message: string,
options?: { level?: string },
): void;
}
declare module "../utils/debug.js" {
export function logForDebugging(
message: string,
options?: { level?: string },
): void;
}
declare module "../utils/envUtils.js" {
export function getClaudeConfigHomeDir(): string;
export function isEnvTruthy(key: string): boolean;
}
declare module "./sdk/settingsTypes.generated.js" {
export type Settings = Record<string, unknown>;
}
// Anthropic documentation stubs (stripped from fork)
declare module "./claude-api/*" {
const content: string;
export default content;
}
declare module "../claude-api/*" {
const content: string;
export default content;
}
// Stripped server infrastructure
declare module "./server/*" {
export default undefined;
}
declare module "./server/*.js" {
export default undefined;
}
// Stripped Anthropic-only modules (1-2 references each)
declare module "*.md" {
const content: string;
export default content;
}
declare namespace NodeJS {
interface ProcessEnv {
USER_TYPE?: "external" | "ant";
}
}
// Stripped Anthropic-only runtime functions
declare function fireCompanionObserver(
messages: unknown,
callback: (reaction: unknown) => void,
): Promise<void>;
declare module "./services/skillSearch/prefetch.js" {
export function startSkillDiscoveryPrefetch(
_arg: null,
messages: unknown[],
ctx: unknown,
): unknown;
export function collectSkillDiscoveryPrefetch(
prefetch: unknown,
): Promise<unknown[]>;
}
// Missing modules for src/main.tsx — using wildcard relative paths
// (relative module declarations resolve from the .d.ts location, which is the project root)
declare module "*/utils/eventLoopStallDetector.js" {
export function startEventLoopStallDetector(): void;
}
declare module "*/utils/sdkHeapDumpMonitor.js" {
export function startSdkMemoryMonitor(): void;
}
declare module "*/utils/sessionDataUploader.js" {
export function createSessionTurnUploader(): unknown;
}
declare module "*/bridge/bridgeMain.js" {
export function bridgeMain(args: string[]): Promise<void>;
}
declare module "*/utils/ccshareResume.js" {
export function parseCcshareId(input: string): string | undefined;
export function loadCcshare(
id: string,
opts?: { print?: string | boolean; outputFormat: string },
): Promise<unknown>;
}
// log: fix TS2339 — ink custom JSX intrinsic elements
declare namespace JSX {
interface IntrinsicElements {
"ink-box": Record<string, unknown>;
"ink-text": Record<string, unknown>;
"ink-link": Record<string, unknown>;
"ink-raw-ansi": Record<string, unknown>;
}
}