import * as SchemaTypes from "./@schema"; import { TypedDocumentNode } from "@ts-gql/tag"; type CreateCommitMutationVariables = SchemaTypes.Exact<{ input: SchemaTypes.CreateCommitOnBranchInput; }>; type CreateCommitMutation = { readonly createCommitOnBranch: { readonly ref: { readonly id: string; readonly target: { readonly id: string; readonly oid: string; } | { readonly id: string; readonly oid: string; readonly tree: { readonly id: string; readonly oid: string; }; } | { readonly id: string; readonly oid: string; } | { readonly id: string; readonly oid: string; } | null; } | null; } | null; }; export type type = TypedDocumentNode<{ type: "mutation"; result: CreateCommitMutation; variables: CreateCommitMutationVariables; documents: SchemaTypes.TSGQLDocuments; fragments: SchemaTypes.TSGQLRequiredFragments<"none">; }>; declare module "./@schema" { interface TSGQLDocuments { CreateCommit: type; } } export declare const document: any; export {};