UNPKG

@shopify/cli-kit

Version:

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

20 lines (19 loc) 623 B
import * as Types from './types.js'; import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export type ThemePublishMutationVariables = Types.Exact<{ id: Types.Scalars['ID']['input']; }>; export type ThemePublishMutation = { themePublish?: { theme?: { id: string; name: string; role: Types.ThemeRole; } | null; userErrors: { field?: string[] | null; message: string; }[]; } | null; }; export declare const ThemePublish: DocumentNode<ThemePublishMutation, ThemePublishMutationVariables>;