speech-rule-engine
Version:
A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.
18 lines (17 loc) • 630 B
TypeScript
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;
}