state,
action: ActionDocument
) => {...}
тип ActionDocument
type ActionDocument = PayloadAction<
DocumentType[]
>
я его использую, перед этим получив данные
const { data, total } = await getData('')
dispatch(setDocuments(data))
если навожу курсор на data, чтобы увидеть её тип, получаю
DocumentType[]
и в этот же момент выходит ошибка, что тип неверный
Argument of type 'DocumentType[]' is not assignable to parameter of type 'import("путь-до-файла").DocumentType[]'.
Type 'DocumentType' is missing the following properties from type 'DocumentType': postId, id, email, body
ts(2345)
что за прикол?
я понял почему была эта ошибка
Обсуждают сегодня