ts-ignore

This commit is contained in:
2026-04-02 21:25:12 +05:30
parent ff3094cf09
commit c7095ed481
4 changed files with 13 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
/**
* This file contains application-specific overrides and configuration
* for the generic Admin Panel.
*/
export interface FieldOverride {
displayField?: string;
display?: boolean;
formatter?: (value: any) => string;
}
export interface ResourceOverride {
fields?: Record<string, FieldOverride>;
}