feat: Implement basic http client

This commit is contained in:
Faruk AYDIN
2022-07-15 19:56:48 +03:00
parent e950d73742
commit 16e299a12d
2 changed files with 24 additions and 0 deletions

View File

@@ -175,3 +175,7 @@ export interface ISubstep {
name: string;
arguments: IField[];
}
export type IHttpClientParams = {
baseURL: string;
}