From 613aa1a71d62d1ec089911fd9bb02691d42f80ae Mon Sep 17 00:00:00 2001 From: ITOH Date: Sat, 15 May 2021 11:37:42 +0200 Subject: [PATCH] change: move application types to applications folder --- src/types/{oauth2 => applications}/application.ts | 0 src/types/{oauth2 => applications}/application_flags.ts | 0 src/types/mod.ts | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/types/{oauth2 => applications}/application.ts (100%) rename src/types/{oauth2 => applications}/application_flags.ts (100%) diff --git a/src/types/oauth2/application.ts b/src/types/applications/application.ts similarity index 100% rename from src/types/oauth2/application.ts rename to src/types/applications/application.ts diff --git a/src/types/oauth2/application_flags.ts b/src/types/applications/application_flags.ts similarity index 100% rename from src/types/oauth2/application_flags.ts rename to src/types/applications/application_flags.ts diff --git a/src/types/mod.ts b/src/types/mod.ts index 3ca331274..80bb9c3d5 100644 --- a/src/types/mod.ts +++ b/src/types/mod.ts @@ -196,8 +196,8 @@ export * from "./misc/image_format.ts"; export * from "./misc/image_size.ts"; export * from "./misc/typing_start.ts"; export * from "./mod.ts"; -export * from "./oauth2/application.ts"; -export * from "./oauth2/application_flags.ts"; +export * from "./applications/application.ts"; +export * from "./applications/application_flags.ts"; export * from "./oauth2/bot_auth_query.ts"; export * from "./oauth2/get_current_authorization_information.ts"; export * from "./oauth2/scopes.ts";