Loggest thy stuff
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.
 
 
 
 
 
 

24 lines
619 B

import type { StandaloneItem } from "./item";
import type { StandaloneRequirement } from "./project";
import type { ScopeEntry } from "./scope";
import type { StatAggregate, StatProgressEntry } from "./stat";
export default interface Sprint {
id: number
name: string
description: string
from: string
to: string
timed: boolean
coarse: boolean
kind: "item" | "requirements" | "stats"
scope: ScopeEntry
items: StandaloneItem[]
requirements: StandaloneRequirement[]
aggregateRequired: number,
stats: StatProgressEntry[]
}
export interface StandaloneSprint extends Sprint {
scope: ScopeEntry
}