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.
 
 
 
 
 
 

21 lines
423 B

import type { ProjectEntry } from "./project";
import type Stat from "./stat";
import type Status from "./status";
export interface ScopeEntry {
id: number
name: string
abbreviation: string
}
export default interface Scope extends ScopeEntry {
displayName: string
projects: ProjectEntry[]
stats: Stat[]
statusLabels: Record<Status, string>
}
export interface ScopeMember {
name: string
owner: boolean
}