Replace all occurrences of "import type" syntax to "import" syntax

This commit is contained in:
ayyanm
2020-10-28 12:52:33 -07:00
parent 030b24350e
commit 10f67b090a
37 changed files with 122 additions and 123 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { encode } from "../../deps.ts";
import { sendGatewayCommand } from "../module/shardingManager.ts";
import { ActivityType } from "../types/activity.ts";
import type { StatusType } from "../types/discord.ts";
import { StatusType } from "../types/discord.ts";
export const sleep = (timeout: number) => {
return new Promise((resolve) => setTimeout(resolve, timeout));