13 lines
444 B
TypeScript
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
|