$mol_data_string as Str ,
} from 'mol_data'
const A = Rec({
propsA?: Str
})
const B = Rec({
propsB?: Str
})
const C = Rec({
... A.config,
... B.config,
})
const obj: typeof C.Value = {}
Object.keys(obj).forEach((key) => {
if (key in A.config) {
doSomethingOne()
}
if (key in B.config) {
doSomethingelse()
}
})
ловите наркомана
Обсуждают сегодня