Type Alias: FlatObject
FlatObject =
Record<string,unknown>
Defined in: object/types.ts:37
Flattened object with dot-notation keys.
Example
const flat: FlatObject = {
'user.name': 'Alice',
'user.age': 30
}
FlatObject =
Record<string,unknown>
Defined in: object/types.ts:37
Flattened object with dot-notation keys.
const flat: FlatObject = {
'user.name': 'Alice',
'user.age': 30
}