anvil/striker-ui/types/Tree.d.ts

4 lines
57 B
TypeScript
Raw Normal View History

2023-09-16 03:14:25 +00:00
type Tree<T = string> = {
[k: string]: Tree<T> | T;
};