7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import type { Device } from '@/api/device/interface/device'
|
|
import http from '@/api'
|
|
|
|
|
|
export const startTest = (params) => {
|
|
return http.post(`/prepare/startTest`, params,{ loading: false })
|
|
} |