You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
434 B
19 lines
434 B
import type { ProjectEntry } from "./project";
|
|
import type { ScopeEntry } from "./scope";
|
|
import type { StatProgressEntry } from "./stat";
|
|
|
|
export default interface Item {
|
|
id: number
|
|
name: string
|
|
description: string
|
|
createdTime: Date
|
|
createdBy: string
|
|
acquireTime?: Date
|
|
scheduledDate?: string
|
|
stats: StatProgressEntry[]
|
|
}
|
|
|
|
export interface StandaloneItem extends Item {
|
|
scope: ScopeEntry
|
|
project?: ProjectEntry
|
|
}
|