import type fixes

This commit is contained in:
Skillz
2020-09-20 19:45:34 -04:00
parent ebc3d9a8b3
commit 0c1f9529e0
38 changed files with 217 additions and 197 deletions
+5 -6
View File
@@ -1,10 +1,9 @@
import {
Permission,
Permissions,
} from "../types/permission.ts";
import type { Permission } from "../types/permission.ts";
import type { Role } from "../structures/role.ts";
import type { Guild } from "../structures/guild.ts";
import { Permissions } from "../types/permission.ts";
import { botID } from "../module/client.ts";
import { Role } from "../structures/role.ts";
import { Guild } from "../structures/guild.ts";
import { cacheHandlers } from "../controllers/cache.ts";
/** Checks if the member has this permission. If the member is an owner or has admin perms it will always be true. */