rangoo94/bestest

View on GitHub
packages/execution/lib/interfaces/TestFunctionType.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { SynchronousTestFunctionType } from './SynchronousTestFunctionType'
import { AsynchronousTestFunctionType } from './AsynchronousTestFunctionType'

type TestFunctionType = SynchronousTestFunctionType | AsynchronousTestFunctionType

export {
  TestFunctionType
}