id: string;
title: string;
order: number;
description: string;
userId: string | null;
boardId: string | null;
columnId: string | null;
}
В отдельном методе пытаюсь создать экземпляр
const createTask = async (board: string, taskData: ITask) => {
const newTask = new Task({ ...taskData, boardId: board });
tasks.push(newTask);
return newTask;
};
но получаю ошибку
(property) boardId?: null | undefined
Type 'string' is not assignable to type 'null | undefined'.ts(2322)
Что в классе Task?
export class Task implements ITask { id: string; title: string; order: number; description: string; userId: string | null; boardId: string | null; columnId: string | null; constructor({ id = uuidv4(), title = 'TITLE', order = 0, description = 'Description', userId = null, boardId = null, columnId = null, } = {}) { this.id = id; this.title = title; this.order = order; this.description = description; this.userId = userId; this.boardId = boardId; this.columnId = columnId; } }
Аргумент конструктора вообще не типизирован
Обсуждают сегодня