import * as SchemaTypes from "./@schema"; import { TypedDocumentNode } from "@ts-gql/tag"; type CreateBranchMutationVariables = SchemaTypes.Exact<{ input: SchemaTypes.CreateRefInput; }>; type CreateBranchMutation = { readonly createRef: { readonly __typename: 'CreateRefPayload'; readonly ref: { readonly __typename: 'Ref'; 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 oid: string; }; } | { readonly __typename: 'Tag'; readonly id: string; readonly oid: string; } | { readonly __typename: 'Tree'; readonly id: string; readonly oid: string; } | null; readonly associatedPullRequests: { readonly totalCount: number; }; } | null; } | null; }; export type type = TypedDocumentNode<{ type: "mutation"; result: CreateBranchMutation; variables: CreateBranchMutationVariables; documents: SchemaTypes.TSGQLDocuments; fragments: SchemaTypes.TSGQLRequiredFragments<"none">; }>; declare module "./@schema" { interface TSGQLDocuments { CreateBranch: type; } } export declare const document: any; export {};