Fixed typescript strict issue of Statusbar, hostedUtils, StringUtils etc (#785)

This commit is contained in:
Sunil Kumar Yadav
2021-07-15 20:05:51 +05:30
committed by GitHub
parent 0bbf9de963
commit 397231dca2
8 changed files with 20 additions and 14 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import create, { UseStore } from "zustand";
export interface NotebookSnapshotHooks {
snapshot: string;
error: string;
snapshot?: string;
error?: string;
setSnapshot: (imageSrc: string) => void;
setError: (error: string) => void;
}