blob: e240d61b53c9afe75e56e3bc843f20aebe8b1646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import type { Airline, Airplane, Airport } from '../modules/airline';
import type { LocaleEntry } from './definitions';
export type AirlineDefinition = LocaleEntry<{
/**
* Some airline information
*/
airline: Airline[];
/**
* Some airplane information
*/
airplane: Airplane[];
/**
* Some airport information
*/
airport: Airport[];
}>;
|