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