Skip to content

Commit

Permalink
Correct front-end errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hunter-richardson committed Jun 29, 2024
1 parent df3c700 commit 3d48872
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/scriptura/columnae.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type { VDataTable } from 'vuetify/components';
import Cocutor from '../miscella/cocutor';
import { anglicum } from '../miscella/enumerationes';
import { Multiplex } from '../praebeunda/verba';
Expand All @@ -10,7 +9,10 @@ type Generanda<Hoc extends Multiplex> = {
haec: Hoc[];
};

export type Columnae = VDataTable[ '$props' ][ 'headers' ];
export type Columnae = {
title: string,
key: string;
}[];

export function categoricum<Hoc extends Multiplex> (generanda: Generanda<Hoc>): Columnae {
return Multiplex.colamina(generanda.categoria)
Expand Down

0 comments on commit 3d48872

Please sign in to comment.