8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
export interface ScientificTerm {
|
|
term: string;
|
|
definition: string;
|
|
wikiId?: string;
|
|
}
|
|
|
|
export const SCIENTIFIC_TERMS: Record<string, ScientificTerm> = {};
|