UNPKG

@golemio/parkings

Version:
12 lines (11 loc) 331 B
/** * Parsing strings based on https://wiki.openstreetmap.org/wiki/Key:maxstay * Minimal implementation: * - "unlimited", "none", "no" * - "90 minutes" * - "1 hour"; "5 hours", "1.5 hours" * - "1 day"; "2 days" */ export declare class MaxStayParser { static parse(maxStay: string | null): number | null | undefined; }