1
0

feat(gantt): add task collection to useGanttFilter

This commit is contained in:
Dominik Pschenitschni
2022-10-18 15:55:41 +02:00
committed by kolaente
parent 2c732eb0d5
commit c1da04eda1
6 changed files with 177 additions and 134 deletions

View File

@ -12,6 +12,8 @@ import type {IRelationKind} from '@/types/IRelationKind'
import type {IRepeatAfter} from '@/types/IRepeatAfter'
import type {IRepeatMode} from '@/types/IRepeatMode'
import type {PartialWithId} from '@/types/PartialWithId'
export interface ITask extends IAbstract {
id: number
title: string
@ -49,4 +51,6 @@ export interface ITask extends IAbstract {
listId: IList['id'] // Meta, only used when creating a new task
bucketId: IBucket['id']
}
}
export type ITaskPartialWithId = PartialWithId<ITask>