view data fixes

This commit is contained in:
2026-01-24 00:52:27 +01:00
parent 62e8b768ce
commit ae59df61eb
321 changed files with 1157 additions and 2234 deletions

View File

@@ -1,3 +1,5 @@
import { JsonValue } from "../types/primitives";
/**
* Base interface for ViewData objects
*
@@ -8,9 +10,8 @@
* architectural rule is that these must be plain JSON objects.
*/
export interface ViewData {
[key: string]: any;
[key: string]: JsonValue;
}
/**
* Helper type to ensure a type is ViewData-compatible
*