word-vault
Version:
A lightweight JavaScript package for English word definitions and collections.
13 lines (12 loc) • 362 B
TypeScript
import type { IOxfordPronunciationRegion } from "../../types";
export interface IPronunciationAudioRequest {
id: string;
region: IOxfordPronunciationRegion;
pronunciation: string;
}
export declare function getPronunciationAudio({
id,
region,
pronunciation,
}: IPronunciationAudioRequest): string | null;
//# sourceMappingURL=getPronunciationAudio.d.ts.map