mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 09:33:32 +01:00
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { Type } from './index.js';
|
|
|
|
export interface Exception {
|
|
description?: string;
|
|
nullable?: boolean;
|
|
type: Type;
|
|
}
|