mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
import type { Item, Meta } from './index.js';
|
|
|
|
export interface External extends Item {
|
|
kind: 'external';
|
|
meta: Meta;
|
|
see?: string[];
|
|
}
|