1
1
mirror of https://github.com/Burn-E99/TheArtificer.git synced 2026-01-08 21:37:54 -05:00

V1.3.3 HOTFIX

Patch to more strictly type mod.ts
This commit is contained in:
Ean Milligan (Bastion)
2021-01-27 03:34:49 -05:00
parent 2f6b76cdf7
commit 5a50f2a19f
4 changed files with 14 additions and 3 deletions

9
src/mod.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
// mod.d.ts custom types
export type EmojiConf = {
"name": string,
"aliases": Array<string>,
"id": string,
"animated": boolean,
"deleteSender": boolean
};