export type IApiEnv = 'prod' | 'test';
export interface ISendCodeParams {
    mobile: string;
    source: 'SCRM' | 'DJYY' | 'SCRM_JZT' | 'SCRM_D' | 'SCRM_JZT_D';
    storeCode?: string;
    env: IApiEnv;
    wasmUrl?: string;
    wasmExecUrl?: string;
}
