refactor: more TS code

This commit is contained in:
Tristan Yang
2022-07-29 22:59:22 +08:00
parent 6bb7af46a0
commit 33c24baecb
52 changed files with 232 additions and 273 deletions
+8 -1
View File
@@ -8,7 +8,14 @@ export interface State {
menuExpand: boolean;
// todo
fileListView: string;
uploadFiles: { [key: string]: any };
uploadFiles: {
[key: string]: {
name: string;
url: string;
size: number;
type: string;
}[];
};
selectMessages: { [key: string]: any };
draftMarkdown: { [key: string]: any };
draftMixedText: { [key: string]: any };