import * as SchemaTypes from "./@schema"; import { TypedDocumentNode } from "@ts-gql/tag"; type RepoForUpdatingQueryVariables = SchemaTypes.Exact<{ owner: SchemaTypes.Scalars['String']; name: SchemaTypes.Scalars['String']; }>; type RepoForUpdatingQuery = { readonly repository: { readonly id: string; readonly defaultBranchRef: { readonly id: string; readonly name: string; readonly target: { readonly __typename: 'Blob'; readonly id: string; readonly oid: string; } | { readonly __typename: 'Commit'; readonly id: string; readonly oid: string; readonly tree: { readonly id: string; readonly entries: ReadonlyArray<{ readonly name: string; readonly object: { readonly __typename: 'Blob'; readonly text: string | null; readonly id: string; } | { readonly __typename: 'Commit'; readonly id: string; } | { readonly __typename: 'Tag'; readonly id: string; } | { readonly __typename: 'Tree'; readonly id: string; } | null; }> | null; }; } | { readonly __typename: 'Tag'; readonly id: string; readonly oid: string; } | { readonly __typename: 'Tree'; readonly id: string; readonly oid: string; } | null; } | null; } | null; }; export type type = TypedDocumentNode<{ type: "query"; result: RepoForUpdatingQuery; variables: RepoForUpdatingQueryVariables; documents: SchemaTypes.TSGQLDocuments; fragments: SchemaTypes.TSGQLRequiredFragments<"none">; }>; declare module "./@schema" { interface TSGQLDocuments { RepoForUpdating: type; } } export declare const document: any; export {};