@zeyrbot/urbandictionary
Version:
A wrapper made for urban dictionary api
16 lines • 328 B
TypeScript
export interface List {
list: Term[];
}
export interface Term {
definition: string;
permalink: string;
thumbs_up: number;
author: string;
word: string;
defid: number;
current_vote: string;
written_on: string;
example: string;
thumbs_down: number;
}
//# sourceMappingURL=types.d.ts.map