anvil/striker-ui/types/Tree.d.ts
2023-09-21 03:41:15 -04:00

4 lines
57 B
TypeScript

type Tree<T = string> = {
[k: string]: Tree<T> | T;
};