speech_rules.d.ts 330 B

1234567
  1. import { SpeechRuleFunction } from '../rule_engine/speech_rule_functions.js';
  2. export declare function addStore(constr: string, inherit: string, store: {
  3. [key: string]: SpeechRuleFunction;
  4. }): void;
  5. export declare function getStore(locale: string, modality: string, domain: string): {
  6. [key: string]: SpeechRuleFunction;
  7. };