limiting pilot data for unauthenticated users
This commit is contained in:
8
app/src/components/pilotCard/PilotCardProps.interface.ts
Normal file
8
app/src/components/pilotCard/PilotCardProps.interface.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user