stack

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

AdminTypes.Incremental type

Signature:

export type Incremental<T> = T | {
    [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
};