/** GTFS file information */ export type GTFSFileInfo = { /** Table name (file name without .txt) */ tableName: GTFSTableName; /** File name including .txt */ fileName: string; /** * Columns in file name, key being column name and value being type: * string: interpret value as string (using .toString()), * int: interpret value as integer (using parseInt()), * float: interpret value as float (using parseFloat()), * ioe: interpret value as integer or empty string (for enumeration) */ columns: Record; }; /** * GTFS file name */ export type GTFSTableName = 'agency' | 'stops' | 'routes' | 'trips' | 'stop_times' | 'calendar' | 'calendar_dates' | 'fare_attributes' | 'fare_rules' | 'timeframes' | 'fare_media' | 'fare_products' | 'fare_leg_rules' | 'fare_transfer_rules' | 'areas' | 'stop_areas' | 'networks' | 'route_networks' | 'shapes' | 'frequencies' | 'transfers' | 'pathways' | 'levels' | 'translations' | 'feed_info' | 'attributions'; /** * GTFS files information */ export declare const GTFS_FILES: Record; /** * Get array of GTFS file infos * @returns Array of GTFS file infos */ export declare const getGTFSFileInfos: () => GTFSFileInfo[]; //# sourceMappingURL=file-info.d.ts.map