@resee-movies/utilities - v0.8.0
    Preparing search index...

    Type Alias SerializableConstructorToSerializedType<T>

    SerializableConstructorToSerializedType: T extends StringConstructor
        ? string
        : T extends NumberConstructor
            ? string
            : T extends BooleanConstructor
                ? string
                | null
                : T extends StringConstructor[]
                    ? string
                    | string[]
                    : T extends NumberConstructor[]
                        ? string
                        | string[]
                        : T extends null ? string : undefined

    Maps serializable runtime type representations (e.g. "StringConstructor[]") to their URL query serialized representation (e.g. "string | string[]").

    Type Parameters