mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
export interface Item {
|
|
description: string;
|
|
id: string;
|
|
ignore?: boolean;
|
|
kind: string;
|
|
longname: string;
|
|
name: string;
|
|
order: number;
|
|
}
|