We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ae1ecb commit 0f85802Copy full SHA for 0f85802
packages/presets/client/tests/client-preset.spec.ts
@@ -1654,6 +1654,8 @@ export * from "./gql.js";`);
1654
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
1655
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
1656
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
1657
+ export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
1658
+ export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
1659
/** All built-in and custom scalars, mapped to their actual values */
1660
export type Scalars = {
1661
ID: string;
0 commit comments