Files
discord.js/packages/docgen/src/interfaces/exception.interface.ts
2022-06-07 10:51:33 +02:00

8 lines
129 B
TypeScript

import type { Type } from './index.js';
export interface Exception {
type: Type;
nullable?: boolean;
description?: string;
}