Не пишу на реакте, но из плейграунда у вас не видно чтобы props имела тип IProps, отсюда и вывод типа listType как string. Попробуйте так: const props = { filter: () => {}, type: { listType: 'withoutGrouping', }, } as IProps Или так: const props: IProps = { filter: () => {}, type: { listType: 'withoutGrouping', }, }
Обсуждают сегодня