fix: properly translate static table headers (#904)

This commit is contained in:
Daniel Lautzenheiser
2023-10-03 12:42:43 -04:00
committed by GitHub
parent 8d82966165
commit a606e4c9fe
47 changed files with 3242 additions and 302 deletions

View File

@ -568,11 +568,6 @@ export abstract class BackendClass {
}>;
}
export interface LocalePhrasesRoot {
[property: string]: LocalePhrases;
}
export type LocalePhrases = string | { [property: string]: LocalePhrases };
export type CustomIcon = FunctionComponent;
export type WidgetValueSerializer = {
@ -1193,6 +1188,5 @@ export interface CollectionEntryData {
viewStyle: ViewStyle;
entry: Entry;
key: string;
summaryFields: string[];
collectionLabel?: string;
}