agent-afk 5.123.2 → 5.123.4
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/formatter.block.d.ts +3 -0
- package/dist/cli/formatter.d.ts +4 -2
- package/dist/cli/formatter.list.d.ts +2 -0
- package/dist/cli/formatter.table.d.ts +2 -0
- package/dist/cli.mjs +523 -523
- package/dist/index.mjs +200 -200
- package/dist/telegram/streaming.body.d.ts +6 -0
- package/dist/telegram/streaming.d.ts +3 -14
- package/dist/telegram/streaming.preview.d.ts +17 -0
- package/dist/telegram/streaming.retry.d.ts +13 -0
- package/dist/telegram.mjs +252 -252
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type Token, type Tokens } from 'marked';
|
|
2
|
+
export declare function renderBlockquote(bq: Tokens.Blockquote, maxTableWidth: number | undefined, renderTokens: (tokens: Token[]) => string): string;
|
|
3
|
+
export declare function renderCodeBlock(code: Tokens.Code, maxTableWidth: number | undefined): string;
|
package/dist/cli/formatter.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { type Tokens } from 'marked';
|
|
2
|
+
declare function renderInlineTokens(tokens?: Tokens.Generic[]): string;
|
|
3
|
+
export declare function renderCardLine(text: string): string;
|
|
1
4
|
interface RenderMarkdownOptions {
|
|
2
5
|
maxWidth?: number;
|
|
3
6
|
}
|
|
4
|
-
export declare function renderCardLine(text: string): string;
|
|
5
7
|
export declare function renderMarkdownToTerminal(text: string, opts?: RenderMarkdownOptions): string;
|
|
6
|
-
export {};
|
|
8
|
+
export { renderInlineTokens };
|