mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-04 10:00:08 +00: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[];
|
|
}
|