UNPKG

ivr-tester

Version:

An automated testing framework for IVR call flows

12 lines (11 loc) 427 B
/// <reference types="node" /> import { DtmfBufferGenerator } from "./DtmfBufferGenerator"; export declare class UlawDtmfBufferGenerator implements DtmfBufferGenerator { private static readonly DEFAULT_RAW_BASE_PATH; private readonly paths; private readonly rawCache; constructor(rawFilesBasePath?: string); private initiatePathsToRawFiles; generate(digits: string): Buffer; private getRawBuffer; }