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:
16
network-poc/frontend/node_modules/mdast-util-to-hast/lib/handlers/text.d.ts
generated
vendored
Normal file
16
network-poc/frontend/node_modules/mdast-util-to-hast/lib/handlers/text.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Turn an mdast `text` node into hast.
|
||||
*
|
||||
* @param {State} state
|
||||
* Info passed around.
|
||||
* @param {MdastText} node
|
||||
* mdast node.
|
||||
* @returns {HastElement | HastText}
|
||||
* hast node.
|
||||
*/
|
||||
export function text(state: State, node: MdastText): HastElement | HastText;
|
||||
import type { State } from '../state.js';
|
||||
import type { Text as MdastText } from 'mdast';
|
||||
import type { Element as HastElement } from 'hast';
|
||||
import type { Text as HastText } from 'hast';
|
||||
//# sourceMappingURL=text.d.ts.map
|
||||
Reference in New Issue
Block a user