/** * Hold force reload state. */ export interface ReloadForceAble { cqForceReload?: boolean; } /** * Properties given to every component runtime by the SPA editor. */ export interface MappedComponentProperties extends ReloadForceAble { isInEditor?: boolean; cqPath?: string; appliedCssClassNames?: string; aemNoDecoration?: boolean; } export interface Config
{ emptyLabel?: string; isEmpty(_props: P): boolean; resourceType?: string; forceReload?: boolean; }