const x = type({
a: 'string',
b: 'string',
c: 'string'
})
const xType = typeof x;
const y = x.map((original) => ({
...original,
c: 'number'
}))
const yType = typeof y;
const x = type({
a: 'string',
b: 'string',
c: 'string'
})
const xType = typeof x;
const y = x.map((original) => ({
...original,
c: 'number'
}))
const yType = typeof y;