fix: file renamed

This commit is contained in:
Nishchit Dhanani
2023-07-21 22:54:59 +05:30
parent 61f9b05603
commit 6552518555

View File

@@ -0,0 +1,21 @@
import { IRest, IRestResponse, IVariableGroup } from '@firecamp/types';
export type TRestExecutionResponse = {
response: IRestResponse;
variables: IVariableGroup;
testResult?: any;
scriptErrors?: any[];
};
export interface IRestExecutor {
/**
* run the request to fetch the server response
*/
send(
request: IRest,
variables: IVariableGroup
): Promise<TRestExecutionResponse>;
/** cancel the request */
cancel(): void;
}