fix(core): update

This commit is contained in:
2021-01-26 03:19:49 +00:00
parent 1023a94ff2
commit f4bb17dea1
2 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ import { HrtMeasurement } from '@pushrocks/smarttime';
// interfaces
export type TTestStatus = 'success' | 'error' | 'pending' | 'errorAfterSuccess' | 'timeout';
export interface ITestFunction <T = unknown> { (tapTools?: TapTools): Promise<T> };
export interface ITestFunction <T> { (tapTools?: TapTools): Promise<T> };
export class TapTest <T = unknown> {
public description: string;