import type { PropertyInfo } from '../globals'; export type CascadeSubscription = { previousValue?: string; [key: string]: any; }; export type CascadeSubscribersObj = { [context: string]: { [pageReference: string]: CascadeSubscription; }; }; export type CascadeResetSubscribersObj = { [context: string]: { [pageReference: string]: PropertyInfo[]; }; };