StationStatus Toast hinzugefügt #45
This commit is contained in:
@@ -29,4 +29,18 @@ export interface AdminMessage {
|
||||
};
|
||||
}
|
||||
|
||||
export type NotificationPayload = ValidationFailed | ValidationSuccess | AdminMessage;
|
||||
export interface StationStatus {
|
||||
type: "station-status";
|
||||
status: "5";
|
||||
message: string;
|
||||
data?: {
|
||||
stationId: number;
|
||||
aircraftId: number;
|
||||
};
|
||||
}
|
||||
|
||||
export type NotificationPayload =
|
||||
| ValidationFailed
|
||||
| ValidationSuccess
|
||||
| AdminMessage
|
||||
| StationStatus;
|
||||
|
||||
Reference in New Issue
Block a user