interface OnPush {
updateFn: true,
tag: Tag
}
export interface OnPush {
updateFn: false,
}
при такой комбинации ругается, что Subsequent property declarations must have the same type. Property 'updateFn' must be of type 'true', but here has type 'false'
Я понимаю, что оба аттрибута updateFn должны быть boolean, но как поступить в данной ситуации?
Тебе тут придется видимо отдельную утилку писать
Обсуждают сегодня