Refactor - Move some files into src/logic and src/types

This commit is contained in:
2020-09-07 11:05:11 +05:30
parent 5bbb8ef41f
commit 46f1a5c569
4 changed files with 3 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
export type Token = {
types: string[];
content: string;
empty?: boolean;
};