mirror of
https://github.com/ION606/custom_discordjs.git
synced 2026-05-14 22:26:54 +00:00
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
|
|
import { Interaction } from "./interaction.js";
|
||
|
|
|
||
|
|
|
||
|
|
export class Modal extends Interaction {
|
||
|
|
constructor(intRaw, client) {
|
||
|
|
super(intRaw, client);
|
||
|
|
console.log(intRaw);
|
||
|
|
}
|
||
|
|
}
|