Alpha stage commit

This commit is contained in:
2026-07-02 21:04:05 +02:00
parent c03b183dfb
commit abed21be21
136 changed files with 15531 additions and 15 deletions

13
packages/shared/src/offline.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
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