Reporting: Add usedInRepeat property in BaseVariableModel (#79855)

property added in interface
This commit is contained in:
Juan Cabanas
2024-01-23 06:02:49 -03:00
committed by GitHub
parent 6a387aa1c5
commit ef3aa55e3c

View File

@ -164,4 +164,5 @@ export interface BaseVariableModel {
state: LoadingState;
error: any | null;
description: string | null;
usedInRepeat?: boolean;
}