wordnik-api
Version:
Community API for https://wordnik.com with types
24 lines (23 loc) • 696 B
TypeScript
/**
* 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);
}