21 lines
370 B
TypeScript
Executable File
21 lines
370 B
TypeScript
Executable File
import type { CourseLevel } from "./course";
|
|
|
|
export type CaseTerm = {
|
|
term: string;
|
|
definitionEs: string;
|
|
};
|
|
|
|
export type CaseStudy = {
|
|
slug: string;
|
|
title: string;
|
|
citation: string;
|
|
year: number;
|
|
summaryEs: string;
|
|
legalOutcomeEs: string;
|
|
level: CourseLevel;
|
|
category: string;
|
|
difficulty: string;
|
|
keyTerms: CaseTerm[];
|
|
quizPrompt: string;
|
|
};
|