fix: cleanup temp code

This commit is contained in:
Benjamin Singleton 2025-06-14 12:46:37 -05:00
parent 6ea53dc652
commit d35ca7f3ba
4 changed files with 6 additions and 46 deletions

View file

@ -5,7 +5,7 @@ export interface Locale {
}
export interface Layout<T> {
layout: (keyof T)[];
layout: (keyof T)[] | null;
data: { [K in keyof T]: T[K] | null };
}