10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import { Alert } from "../../interfaces/Alert.interface";
|
|
|
|
export interface ILogFormState {
|
|
alert: Alert | undefined;
|
|
isDisabled: boolean;
|
|
isLoading: boolean;
|
|
pilotOptions: { label: string; value: string }[];
|
|
selectedEntryPilotName: string;
|
|
}
|