mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-01 00:20:07 +00: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;
|
|
}
|