revert: delete old files

This commit is contained in:
Jacob Nguyen
2022-09-09 02:04:54 -05:00
parent fe1b7e4e84
commit a8f218ff00
2 changed files with 0 additions and 15 deletions

View File

@@ -1,12 +0,0 @@
import type { ScopedPlugin } from '../../types/handler';
export interface Database extends ScopedPlugin {
create() : void;
read() : void;
update() : void;
delete() : void;
}
interface DatabaseConstructor {
new() : Database
}

View File

@@ -1,3 +0,0 @@
import type { Client } from 'discord.js';
type ProvidesClient = { provides : <T extends Client>(client: T) => void }