graycoreio/daffodil

View on GitHub
libs/design/tree/src/interfaces/tree-render-mode.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Represents the mode of rendering for nodes in a tree UI.
 * - 'in-dom': Closed nodes are present in the Document Object Model (DOM).
 * - 'not-in-dom': Closed nodes are not present in the Document Object Model (DOM).
 */
export type DaffTreeRenderMode = 'in-dom' | 'not-in-dom';