export type AxisBucket = 'low' | 'mid' | 'high'; export interface PhilosophicalAlignment { epistemology: number; outlook: number; scope: number; } export interface AlignmentFallacy { name: string; example: string; rationale: string; } export interface PhilosophicalAlignmentCell { id: string; epistemology: AxisBucket; outlook: AxisBucket; scope: AxisBucket; label: string; philosopher: string; literaryCharacter: { name: string; work: string; }; fallacies: [AlignmentFallacy, AlignmentFallacy, AlignmentFallacy]; } //# sourceMappingURL=types.d.ts.map