Chore: fix some types (#58662)

chore: fix some types
This commit is contained in:
Ashley Harrison
2022-11-11 16:29:49 +00:00
committed by GitHub
parent 860e25df3c
commit 500cf16142
26 changed files with 61 additions and 117 deletions

View File

@@ -10,8 +10,8 @@ import { DiffViewer } from '../VersionHistory/DiffViewer';
import { Diffs } from '../VersionHistory/utils';
interface SaveDashboardDiffProps {
oldValue?: any;
newValue?: any;
oldValue?: unknown;
newValue?: unknown;
// calculated by parent so we can see summary in tabs
diff?: Diffs;