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.
 
 
 
 
 
 

16 lines
371 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
acquireDate?: string
stats: StatProgressEntry[]
}
export interface StandaloneItem extends Item {
scope: ScopeEntry
project?: ProjectEntry
}