@webdeveric/utils
    Preparing search index...

    Type Alias GetTupleFromInput<Type>

    GetTupleFromInput: {
        [Property in keyof Type]: Type[Property] extends TypePredicateFn<
            infer T,
        >
            ? T
            : Type[Property]
    }

    Type Parameters