UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

10 lines (9 loc) 240 B
import { BaseEntity } from "./base.entity"; import { Task } from "./task.entity"; export declare class TaskChecklistItem extends BaseEntity { taskId: number; task: Task; name: string; isChecked: boolean; note: string; }