import * as SchemaTypes from "./@schema"; import { TypedDocumentNode } from "@ts-gql/tag"; type DefaultBranchQueryVariables = SchemaTypes.Exact<{ owner: SchemaTypes.Scalars['String']; name: SchemaTypes.Scalars['String']; }>; type DefaultBranchQuery = { readonly repository: { readonly id: string; readonly defaultBranchRef: { readonly id: string; readonly name: string; } | null; } | null; }; export type type = TypedDocumentNode<{ type: "query"; result: DefaultBranchQuery; variables: DefaultBranchQueryVariables; documents: SchemaTypes.TSGQLDocuments; fragments: SchemaTypes.TSGQLRequiredFragments<"none">; }>; declare module "./@schema" { interface TSGQLDocuments { DefaultBranch: type; } } export declare const document: any; export {};