chore: Add IConfig type

This commit is contained in:
Faruk AYDIN
2023-10-15 19:59:26 +02:00
parent 25224f0308
commit 99ebd12081

View File

@@ -125,6 +125,12 @@ export interface IPermissionCatalog {
conditions: { label: string; key: string }[];
}
export interface IConfig {
id: string;
key: string;
value: IJSONObject;
}
export interface IFieldDropdown {
key: string;
label: string;