import { ShopifyConfig, getConfig } from '../api' import type { Page } from '../types' export type { Page } export type GetPageResult = T export type PageVariables = { id: string } async function getPage({ url, variables, config, preview, }: { url?: string variables: PageVariables config?: ShopifyConfig preview?: boolean }): Promise { config = getConfig(config) return {} } export default getPage