import type { IDynamicDataCallables } from './IDynamicDataCallables'; /** * This is used to pass "sub-properties" into the context data source. It can be used * for example, to populate the PageContextInfo data, as well as the SPPage.CurrentItem * * @internal */ export interface IContextPropertyInfo { id: string; dynamicDataFunctions: IDynamicDataCallables; } //# sourceMappingURL=IContextPropertyInfo.d.ts.map