Type Alias: NestedMap<T>
NestedMap<
T> =object
Defined in: collection/types.ts:149
A nested map structure for hierarchical grouping.
Type Parameters
T
T
Index Signature
[key: string | number]: T | NestedMap<T> | readonly T[]
Example
const nested: NestedMap<Comment> = {
'user_1': {
'post_1': [comment1, comment2],
'post_2': [comment3]
}
}