blessed-components - v1.20.0
    Preparing search index...

    Type Alias TimeInputParseResult

    TimeInputParseResult:
        | { input: string; minutes: number; valid: true }
        | {
            input: string;
            reason: "empty" | "invalid" | "below-min" | "above-max";
            valid: false;
        }

    Result returned by parseTimeInput.