Files
discord.js/packages/docgen/src/interfaces/exception.interface.ts
2022-09-01 20:50:16 +02:00

8 lines
129 B
TypeScript

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