mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
18 lines
361 B
TypeScript
18 lines
361 B
TypeScript
|
interface Definition {
|
||
|
id: number;
|
||
|
word: string;
|
||
|
thumbsUp: number;
|
||
|
thumbsDown: number;
|
||
|
author: string;
|
||
|
urbanURL: string;
|
||
|
example: string;
|
||
|
definition: string;
|
||
|
tags: string[] | null;
|
||
|
sounds: string[] | null;
|
||
|
}
|
||
|
|
||
|
declare module "relevant-urban" {
|
||
|
function urban(query: string): Promise<Definition>;
|
||
|
export = urban;
|
||
|
}
|