UNPKG

speech-rule-engine

Version:

A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.

11 lines (10 loc) 495 B
import { SemanticNode } from '../semantic_tree/semantic_node.js'; import { Sexp } from '../semantic_tree/semantic_skeleton.js'; import { AbstractEnrichCase } from './abstract_enrich_case.js'; export declare abstract class CaseMultiindex extends AbstractEnrichCase { mml: Element; static multiscriptIndex(index: SemanticNode): Sexp; private static createNone_; constructor(semantic: SemanticNode); protected completeMultiscript(rightIndices: Sexp, leftIndices: Sexp): void; }