UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

12 lines (11 loc) 418 B
import type { string_markdown } from '../../types/typeAliases'; import type { string_markdown_text } from '../../types/typeAliases'; /** * Create a markdown table from a 2D array of strings * * @public exported from `@promptbook/markdown-utils` */ export declare function createMarkdownTable(table: Array<Array<string_markdown_text>>): string_markdown; /** * TODO: [🏛] This can be part of markdown builder */