feat: extend mode interface from class instead from interface
This commit is contained in:
parent
80eaf38090
commit
a6b96f857d
33 changed files with 40 additions and 41 deletions
|
|
@ -19,7 +19,7 @@ export const RELATION_KINDS = [...Object.values(RELATION_KIND)] as const
|
|||
|
||||
export type RelationKind = typeof RELATION_KINDS[number]
|
||||
|
||||
export interface ITaskRelationModel {
|
||||
export interface ITaskRelationModel extends AbstractModel {
|
||||
id: number
|
||||
otherTaskId: ITask['id']
|
||||
taskId: ITask['id']
|
||||
|
|
|
|||
Reference in a new issue