stack

Home > @infiniteobjects/shopify-data-manager > AdminTypes > MakeOptional

AdminTypes.MakeOptional type

Signature:

export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
    [SubKey in K]?: Maybe<T[SubKey]>;
};

References: Maybe