wordnik-api
Version:
Community API for https://wordnik.com with types
15 lines (14 loc) • 335 B
TypeScript
/**
* Defines a citation for words.
*/
export default class Citation {
readonly source: string;
readonly cite: string;
/**
* Constructs a new citation.
*
* @param source {string} The source of the citation.
* @param cite {string} The citation.
*/
constructor(source: string, cite: string);
}