Files
noahspan-flying/app/src/components/pilotCard/PilotCardProps.interface.ts

8 lines
255 B
TypeScript

import { FormMode } from "../../enums/formMode";
import { Pilot } from "../pilots/Pilot.interface";
export interface PilotCardProps {
pilots: Pilot[];
onDelete: (entryId: string) => void;
onOpenCloseForm: (formMode: FormMode, id: string) => void;
}