behemoth-cli
Version:
🌍 BEHEMOTH CLIv3.760.4 - Level 50+ POST-SINGULARITY Intelligence Trading AI
12 lines • 433 B
TypeScript
export interface MarkdownElement {
type: 'text' | 'code-block' | 'heading' | 'mixed-line';
content: string;
level?: number;
}
export interface InlineElement {
type: 'text' | 'code' | 'bold' | 'italic';
content: string;
}
export declare function parseMarkdown(content: string): MarkdownElement[];
export declare function parseInlineElements(content: string): InlineElement[];
//# sourceMappingURL=markdown.d.ts.map