13 lines
224 B
TypeScript
Executable File
13 lines
224 B
TypeScript
Executable File
import type { CourseLevel } from "./course";
|
|
|
|
export type CaseStudy = {
|
|
slug: string;
|
|
title: string;
|
|
citation: string;
|
|
year: number;
|
|
summary: string;
|
|
level: CourseLevel;
|
|
topic: string;
|
|
keyTerms: string[];
|
|
};
|