stack

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

AdminTypes.Exact type

Signature:

export type Exact<T extends {
    [key: string]: unknown;
}> = {
    [K in keyof T]: T[K];
};