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

    Type Alias DeserializedObject<S>

    DeserializedObject: S extends SerializableObject
        ? Partial<{ [K in keyof S]: S[K] }>
        : S extends SerializationMap
            ? Partial<
                { [K in keyof S]: SerializableConstructorToType<S[K]["type"]> },
            >
            : never

    The representation of an object after it has been deserialized. This works best when provided a SerializationMap, as those are able to provide a more accurate description of what is expected. All properties are made optional, since there is no way to guarantee they exist in the URL.

    Type Parameters