Merge pull request #43 from TriliumNext/feature/typescript_backend_7

Convert backend to TypeScript (71% -> 80%)
This commit is contained in:
Elian Doran
2024-04-15 21:51:00 +03:00
committed by GitHub
39 changed files with 615 additions and 444 deletions

View File

@@ -41,7 +41,7 @@ interface Message {
taskType?: string | null;
message?: string;
reason?: string;
result?: string;
result?: string | Record<string, string | undefined>;
script?: string;
params?: any[];