undergroundwires/privacy.sexy

View on GitHub
src/presentation/components/Scripts/View/Tree/TreeView/Bindings/TreeNodeStateChangedEmittedEvent.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { TreeNodeStateDescriptor } from '../Node/State/StateDescriptor';
import type { ReadOnlyTreeNode } from '../Node/TreeNode';

export interface TreeNodeStateChangedEmittedEvent {
  readonly node: ReadOnlyTreeNode;
  readonly oldState?: TreeNodeStateDescriptor;
  readonly newState: TreeNodeStateDescriptor;
}