Skip to content

Commit 0f85802

Browse files
authored
Update new client-preset test (#9382)
1 parent 3ae1ecb commit 0f85802

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/presets/client/tests/client-preset.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1654,6 +1654,8 @@ export * from "./gql.js";`);
16541654
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
16551655
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
16561656
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 };
16571659
/** All built-in and custom scalars, mapped to their actual values */
16581660
export type Scalars = {
16591661
ID: string;

0 commit comments

Comments
 (0)