4 lines
57 B
TypeScript
4 lines
57 B
TypeScript
|
type Tree<T = string> = {
|
||
|
[k: string]: Tree<T> | T;
|
||
|
};
|