UNPKG

@shipengine/connect

Version:

The official developer tooling for building ShipEngine connect apps

13 lines (12 loc) 420 B
import APIClient from '../api-client'; import { ConnectApp } from '../types'; export interface TestAccountInfo { email: string; country: string; password: string; testUrl?: string; } /** * Find or create a test account and return the information. */ export declare function createOrFindTestAccounts(client: APIClient, platformApp: ConnectApp, supportedCountries: string[]): Promise<TestAccountInfo[]>;