import type { Context, Options } from '..' import { VtexCommerce } from './commerce' import { IntelligentSearch } from './search' export type Clients = ReturnType export const getClients = (options: Options, ctx: Context) => { const search = IntelligentSearch(options, ctx) const commerce = VtexCommerce(options, ctx) return { search, commerce, } }