@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
15 lines (14 loc) • 464 B
TypeScript
import * as Types from './types.js';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type GetThemeQueryVariables = Types.Exact<{
id: Types.Scalars['ID']['input'];
}>;
export type GetThemeQuery = {
theme?: {
id: string;
name: string;
role: Types.ThemeRole;
processing: boolean;
} | null;
};
export declare const GetTheme: DocumentNode<GetThemeQuery, GetThemeQueryVariables>;