/** * a recursive structure with string keys and leaves of type `T` * * @since 0.0.8 */ export type Tree = { [K: string]: T | Tree; }; /** * a tree-like object * * @since 0.0.8 */ export type TreeLike = Record; //# sourceMappingURL=tree.d.ts.map