feat(editor): Propagate targetNodeParameterContext throughout expression resolution logic (no-changelog) (#16476)

This commit is contained in:
Charlie Kolb
2025-06-18 17:05:32 +02:00
committed by GitHub
parent 32b42dd2f6
commit 701c31cfbc
11 changed files with 99 additions and 36 deletions

View File

@@ -1058,6 +1058,11 @@ export interface NDVState {
highlightDraggables: boolean;
}
export type TargetNodeParameterContext = {
nodeName: string;
parameterPath: string;
};
export interface NotificationOptions extends Partial<ElementNotificationOptions> {
message: string | ElementNotificationOptions['message'];
}