From b6b3d31c5514674a19e11a2d1b4c6858419ef485 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Mon, 3 May 2021 17:39:54 +0000 Subject: [PATCH] export all utils --- mod.ts | 5 +---- src/util/mod.ts | 7 +++++++ 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 src/util/mod.ts diff --git a/mod.ts b/mod.ts index c56b93ff0..152fd637a 100644 --- a/mod.ts +++ b/mod.ts @@ -10,8 +10,5 @@ export * from "./src/structures/message.ts"; export * from "./src/structures/mod.ts"; export * from "./src/structures/role.ts"; export * from "./src/types/mod.ts"; -export * from "./src/util/collection.ts"; -export * from "./src/util/constants.ts"; -export * from "./src/util/permissions.ts"; -export * from "./src/util/utils.ts"; +export * from "./src/util/mod.ts"; export * from "./src/ws/mod.ts"; diff --git a/src/util/mod.ts b/src/util/mod.ts new file mode 100644 index 000000000..fe2efd7b1 --- /dev/null +++ b/src/util/mod.ts @@ -0,0 +1,7 @@ +export * from "./bigint.ts"; +export * from "./collection.ts"; +export * from "./constants.ts"; +export * from "./loop_object.ts"; +export * from "./permissions.ts"; +export * from "./utils.ts"; +export * from "./validate_length.ts"; \ No newline at end of file