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