mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 00:53:31 +01: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';
|
|
}
|