mithril-materialized
    Preparing search index...

    Type Alias InputValue<T>

    InputValue: T extends "number"
    | "range"
        ? number
        : T extends "date"
        | "datetime-local"
        | "month"
        | "time"
        | "week"
            ? Date | string
            : T extends "file" ? FileList | File[] : string

    Input value type based on input type

    Type Parameters