Type Alias InputObject<T>

InputObject<T>: $.Expand<$.U2I<{
    x: {};
} | {
    [K in keyof T]: {
        x: $.Input<T[K]>;
    }
}[number]>["x"]>

Type Parameters