diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-22 18:18:41 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-22 18:18:41 +0200 |
commit | 61fd38d6d9170a9583c62366a2d4afa40507ce01 (patch) | |
tree | 50132ae08fb39b453bca0dbeeae311e12b2528ed /src/plugins/sendify.ts | |
parent | a7dbd73547104540218d4699fcf643fca727d2fc (diff) | |
download | Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.tar.gz Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.tar.bz2 Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.zip |
style: Sort imports
Diffstat (limited to 'src/plugins/sendify.ts')
-rw-r--r-- | src/plugins/sendify.ts | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/plugins/sendify.ts b/src/plugins/sendify.ts index a43260a..d0c7af7 100644 --- a/src/plugins/sendify.ts +++ b/src/plugins/sendify.ts @@ -16,13 +16,14 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import definePlugin from "../utils/types"; -import { lazyWebpack } from "../utils"; -import { filters } from "../webpack"; +import { Message } from "discord-types/general"; +import { PartialDeep } from "type-fest"; + import { ApplicationCommandInputType, sendBotMessage } from "../api/Commands"; +import { lazyWebpack } from "../utils"; import { Devs } from "../utils/constants"; -import { PartialDeep } from "type-fest"; -import { Message } from "discord-types/general"; +import definePlugin from "../utils/types"; +import { filters } from "../webpack"; import { FluxDispatcher } from "../webpack/common"; interface Album { |