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
597 B
TypeScript
27 lines
597 B
TypeScript
/**
|
|
* Remove the `position` field from a tree.
|
|
*
|
|
* @param {Node} tree
|
|
* Tree to clean.
|
|
* @param {Options | null | undefined} [options={force: false}]
|
|
* Configuration (default: `{force: false}`).
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
export function removePosition(
|
|
tree: Node,
|
|
options?: Options | null | undefined
|
|
): undefined
|
|
export type Node = import('unist').Node
|
|
/**
|
|
* Configuration.
|
|
*/
|
|
export type Options = {
|
|
/**
|
|
* Whether to use `delete` to remove `position` fields.
|
|
*
|
|
* The default is to set them to `undefined`.
|
|
*/
|
|
force?: boolean | null | undefined
|
|
}
|