agent-afk 5.57.0 → 5.58.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/dist/cli/_lib/capture-mode.d.ts +12 -0
- package/dist/cli.mjs +448 -448
- package/dist/config/env.d.ts +2 -0
- package/dist/index.mjs +2 -2
- package/dist/telegram.mjs +109 -109
- package/package.json +1 -1
|
@@ -7,3 +7,15 @@ export declare function ringBellIfEnabled(stream: {
|
|
|
7
7
|
write(s: string): unknown;
|
|
8
8
|
isTTY?: boolean;
|
|
9
9
|
}, env?: NodeJS.ProcessEnv): void;
|
|
10
|
+
export declare function detectTermTitle(env?: NodeJS.ProcessEnv): boolean;
|
|
11
|
+
export declare function detectNotify(env?: NodeJS.ProcessEnv): boolean;
|
|
12
|
+
export declare function formatTerminalTitle(cwd: string, running: boolean): string;
|
|
13
|
+
export declare function stripControlBytes(s: string): string;
|
|
14
|
+
export declare function setTerminalTitleIfEnabled(stream: {
|
|
15
|
+
write(s: string): unknown;
|
|
16
|
+
isTTY?: boolean;
|
|
17
|
+
}, title: string, env?: NodeJS.ProcessEnv): void;
|
|
18
|
+
export declare function notifyIfEnabled(stream: {
|
|
19
|
+
write(s: string): unknown;
|
|
20
|
+
isTTY?: boolean;
|
|
21
|
+
}, message: string, env?: NodeJS.ProcessEnv): void;
|