Files
pikebacker/packages/shared/src/offline.d.ts
2026-07-02 21:04:05 +02:00

13 lines
444 B
TypeScript

import type { OfflinePackManifest, Poi, RoutePlan, RuleCard, StagePlan } from './types.js';
export type OfflinePackInput = {
tripId: string;
route: RoutePlan;
stages: StagePlan[];
pois: Poi[];
rules: RuleCard[];
routeBufferKm?: number;
createdAt?: string;
gpxBytes?: number;
};
export declare function createOfflinePackManifest(input: OfflinePackInput): OfflinePackManifest;
//# sourceMappingURL=offline.d.ts.map