14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
import { Selection } from "@heroui/react";
|
|
import { Alert } from "../../interfaces/Alert.interface";
|
|
|
|
export interface LogFormState {
|
|
alert: Alert | undefined;
|
|
experienceSelectedKeys: Selection;
|
|
instrumentSelectedKeys: Selection;
|
|
isDisabled: boolean;
|
|
isLoading: boolean;
|
|
landingsSelectedKeys: Selection;
|
|
pilotOptions: { key: string; label: string; }[];
|
|
selectedPilotName: string;
|
|
}
|