Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
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>
This commit is contained in:
53
network-poc/frontend/node_modules/mdast-util-from-markdown/lib/index.d.ts
generated
vendored
Normal file
53
network-poc/frontend/node_modules/mdast-util-from-markdown/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
/**
|
||||
* Turn markdown into a syntax tree.
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Encoding | null | undefined} [encoding]
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @param {Value} value
|
||||
* Markdown to parse.
|
||||
* @param {Encoding | Options | null | undefined} [encoding]
|
||||
* Character encoding for when `value` is `Buffer`.
|
||||
* @param {Options | null | undefined} [options]
|
||||
* Configuration.
|
||||
* @returns {Root}
|
||||
* mdast tree.
|
||||
*/
|
||||
export function fromMarkdown(value: Value, encoding?: Encoding | null | undefined, options?: Options | null | undefined): Root;
|
||||
/**
|
||||
* Turn markdown into a syntax tree.
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Encoding | null | undefined} [encoding]
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @param {Value} value
|
||||
* Markdown to parse.
|
||||
* @param {Encoding | Options | null | undefined} [encoding]
|
||||
* Character encoding for when `value` is `Buffer`.
|
||||
* @param {Options | null | undefined} [options]
|
||||
* Configuration.
|
||||
* @returns {Root}
|
||||
* mdast tree.
|
||||
*/
|
||||
export function fromMarkdown(value: Value, options?: Options | null | undefined): Root;
|
||||
import type { Value } from 'micromark-util-types';
|
||||
import type { Encoding } from 'micromark-util-types';
|
||||
import type { Options } from './types.js';
|
||||
import type { Root } from 'mdast';
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
Reference in New Issue
Block a user