Files
noahspan-flying/client/src/components/logbookCard/LogbookCardProps.interface.ts
noahspannbauer f98a2ab127 96 switch from azure table storage to sqlite (#97)
* adding typeorm to api

* switching to sqlite

* switching to sqlite

* switching to sqlite

* migrating to sqlite

* updating terraform

* updating infrastructure
2025-11-23 10:42:31 -06:00

9 lines
310 B
TypeScript

import { FormMode } from "../../enums/formMode";
import { LogbookEntry } from "../logbook/LogbookEntry.interface";
export interface LogbookCardProps {
logs: LogbookEntry[];
mode: 'flights' | 'logbook';
onDelete?: (entryId: string) => void;
onOpenCloseForm?: (formMode: FormMode, id: string) => void;
}