/** * Describes the pronunciation of a word. * * This needs some more documentation, feel free to make a PR. */ export default class Pronunciation { readonly seq: number; readonly raw: string; readonly rawType: string; readonly id: string; readonly attributionText: string; readonly attributionUrl: string; /** * Pronunciation constructor. * @param seq {number} * @param raw {string} * @param rawType {string} * @param id {string} * @param attributionText {string} * @param attributionUrl {string} */ constructor(seq: number, raw: string, rawType: string, id: string, attributionText: string, attributionUrl: string); }