UNPKG

@shopify/cli-kit

Version:

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

16 lines (15 loc) 536 B
import * as Types from './types.js'; import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export type ThemeDeleteMutationVariables = Types.Exact<{ id: Types.Scalars['ID']['input']; }>; export type ThemeDeleteMutation = { themeDelete?: { deletedThemeId?: string | null; userErrors: { field?: string[] | null; message: string; }[]; } | null; }; export declare const ThemeDelete: DocumentNode<ThemeDeleteMutation, ThemeDeleteMutationVariables>;