speech-rule-engine
Version:
A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.
16 lines • 434 B
JavaScript
import { ClearspeakRules } from './clearspeak_rules.js';
import { MathspeakRules } from './mathspeak_rules.js';
import { BrailleRules, OtherRules, PrefixRules } from './other_rules.js';
let INIT = false;
export function init() {
if (INIT) {
return;
}
MathspeakRules();
ClearspeakRules();
PrefixRules();
OtherRules();
BrailleRules();
INIT = true;
}
//# sourceMappingURL=speech_rule_stores.js.map