Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quantum-kittens
GitHub Repository: quantum-kittens/platypus
Path: blob/main/frontend/types/index.d.ts
3855 views
1
declare module '@carbon/icons-vue'
2
declare module '@carbon/icons-vue/*'
3
declare module '@ckeditor/ckeditor5-build-classic'
4
declare module '@ckeditor/ckeditor5-vue'
5
6
interface XCourse {
7
id: string,
8
section: string,
9
goals?: number
10
}
11
12
interface SectionProgress {
13
progress: number;
14
completed: boolean;
15
activeStep?: string;
16
steps: {scores: string[], data: any}[];
17
messages?: {content: string, kind: string}[]
18
}
19
20