UNPKG

@swan-admin/swan-ai-measurements

Version:
19 lines (18 loc) 591 B
import { AxiosResponse } from "axios"; import { URLType } from "./enum.js"; interface CreateCustomer { name: string; storeUrl: string; location: string; email: string; emailsTier_1?: string; emailsTier_2?: string; } declare class Custom { #private; constructor(accessKey?: string, urlType?: URLType, token?: string); createCustomer(payload: CreateCustomer): Promise<AxiosResponse<any>>; getCustomCustomerConfig: (store_url: string) => Promise<AxiosResponse<any>>; getModelUrl: (id: string) => Promise<AxiosResponse<any>>; } export default Custom;