import { GTFSFeedBase } from './base.js'; import { GTFSAsyncIterableFeed, GTFSIterableFeed } from './iterable.js'; import type { GTFSTableName } from '../file-info.d.ts'; import type { GTFSFileRow } from '../types.d.ts'; /** * GTFS Feed that is loaded into memory, records type being array. */ export declare class GTFSLoadedFeed extends GTFSFeedBase { /** * Constructor * @param initialValues Initial values */ constructor(initialValues?: Partial>); /** * Convert records into generator function and return an instance of iterable feed. * @returns Iterable feed */ getIterable(): GTFSIterableFeed; /** * Convert records into asynchronous generator function and return an instance of async iterable feed. * @returns Async iterable feed */ getAsyncIterable(): GTFSAsyncIterableFeed; } //# sourceMappingURL=loaded.d.ts.map