finite-state-sdk
Version:
The Finite State SDK.
14 lines (13 loc) • 464 B
TypeScript
import { CreateTestResponse, Tools, UploadMethod } from "./types";
export interface createTestParams {
businessUnitId: string;
createdByUserId: string;
assetId: string;
artifactId: string;
testName: string;
testType: string;
tools?: Tools[];
uploadMethod?: UploadMethod;
productId?: string;
}
export declare function createTest(token: string, organizationContext: string, params: createTestParams): Promise<CreateTestResponse>;