mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-04 10:00:08 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import type { Class } from './index.js';
|
|
|
|
// @ts-expect-error: Inheritance type error
|
|
export interface Interface extends Class {
|
|
classdesc: string;
|
|
kind: 'interface';
|
|
}
|