UNPKG

@rxap/data-source

Version:

Provides a set of classes and decorators for creating and managing data sources in Angular applications, including base classes, static data sources, observable data sources, and method data sources. It also includes a component for displaying data source

6 lines (5 loc) 215 B
import { WithChildren, WithIdentifier } from '@rxap/utilities'; import { Node } from '@rxap/data-structure-tree'; export type RowDataWithNode<T extends WithIdentifier & WithChildren> = T & { __node: Node<T>; };