import type * as core from "../../../../../core/index.js"; /** * @example * { * file: fs.createReadStream("/path/to/your/file"), * dict_id: "dict_id" * } */ export interface UpdatePronunciationDictionaryRequest { /** ID of the dictionary to update */ dict_id: string; file: core.file.Uploadable; }