component-dbs-core
Version:
DTO objects shared among device backend
16 lines (15 loc) • 477 B
TypeScript
import { IdentityTestCase } from './testCases';
import { DeviceService } from '../../../devices';
export declare class PhoneRegisterTestSuite {
params: object[];
getParameterForTestCase(testCase: number, deviceService: DeviceService): Promise<{
phone: string;
deviceUuid: string;
testCaseCode: number;
} | {
phone: {
testCaseCode: IdentityTestCase.PHONE_REGISTER_SUCCESS;
};
deviceUuid: string;
}>;
}