@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
21 lines (20 loc) • 646 B
TypeScript
import * as Types from './types.js';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type GetThemesQueryVariables = Types.Exact<{
after?: Types.InputMaybe<Types.Scalars['String']['input']>;
}>;
export type GetThemesQuery = {
themes?: {
nodes: {
id: string;
name: string;
role: Types.ThemeRole;
processing: boolean;
}[];
pageInfo: {
hasNextPage: boolean;
endCursor?: string | null;
};
} | null;
};
export declare const GetThemes: DocumentNode<GetThemesQuery, GetThemesQueryVariables>;