dummy_walker.d.ts 630 B

1234567891011121314151617
  1. import { SemanticRole, SemanticType } from '../semantic_tree/semantic_meaning.js';
  2. import { AbstractWalker } from './abstract_walker.js';
  3. import { Focus } from './focus.js';
  4. import { Levels } from './levels.js';
  5. export declare class DummyWalker extends AbstractWalker<void> {
  6. up(): Focus;
  7. down(): Focus;
  8. left(): Focus;
  9. right(): Focus;
  10. repeat(): Focus;
  11. depth(): Focus;
  12. home(): Focus;
  13. getDepth(): number;
  14. initLevels(): Levels<void>;
  15. combineContentChildren(_type: SemanticType, _role: SemanticRole, _content: string[], _children: string[]): void[];
  16. findFocusOnLevel(_id: number): Focus;
  17. }