UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

13 lines (12 loc) 453 B
import * as Types from './types.js'; import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export type PublicApiVersionsQueryVariables = Types.Exact<{ [key: string]: never; }>; export type PublicApiVersionsQuery = { publicApiVersions: { handle: string; supported: boolean; }[]; }; export declare const PublicApiVersions: DocumentNode<PublicApiVersionsQuery, PublicApiVersionsQueryVariables>;