Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
27 lines
1.0 KiB
TypeScript
27 lines
1.0 KiB
TypeScript
/**
|
|
* Add support for serializing to markdown.
|
|
*
|
|
* @param {Readonly<Options> | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
export default function remarkStringify(options?: Readonly<Options> | null | undefined): undefined;
|
|
export default class remarkStringify {
|
|
/**
|
|
* Add support for serializing to markdown.
|
|
*
|
|
* @param {Readonly<Options> | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
constructor(options?: Readonly<Options> | null | undefined);
|
|
compiler: (tree: import("mdast").Root, file: import("vfile").VFile) => string;
|
|
}
|
|
export type Root = import('mdast').Root;
|
|
export type ToMarkdownOptions = import('mdast-util-to-markdown').Options;
|
|
export type Compiler = import('unified').Compiler<Root, string>;
|
|
export type Processor = import('unified').Processor<undefined, undefined, undefined, Root, string>;
|
|
export type Options = Omit<ToMarkdownOptions, 'extensions'>;
|