Files
noahspan-flying/app/src/components/pilotForm/IPilotFormProps.ts
2024-10-03 20:31:11 -05:00

9 lines
197 B
TypeScript

import { PilotFormMode } from './PilotForm';
export interface IPilotFormProps {
isDrawerOpen: boolean;
mode: PilotFormMode;
onOpenClose: (mode: PilotFormMode) => void;
pilotId?: string;
}