1
0

add initial marp implementation with sample content and build configuration

This commit is contained in:
2025-09-13 18:13:22 +02:00
parent dcacc9b409
commit e5f219507f
10319 changed files with 1402023 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { SemanticRole, SemanticType } from '../semantic_tree/semantic_meaning.js';
import { AbstractWalker } from './abstract_walker.js';
import { Focus } from './focus.js';
import { Levels } from './levels.js';
export declare class DummyWalker extends AbstractWalker<void> {
up(): Focus;
down(): Focus;
left(): Focus;
right(): Focus;
repeat(): Focus;
depth(): Focus;
home(): Focus;
getDepth(): number;
initLevels(): Levels<void>;
combineContentChildren(_type: SemanticType, _role: SemanticRole, _content: string[], _children: string[]): void[];
findFocusOnLevel(_id: number): Focus;
}