feat(gantt): add task collection to useGanttFilter
This commit is contained in:

committed by
kolaente

parent
2c732eb0d5
commit
c1da04eda1
@ -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>
|
Reference in New Issue
Block a user