UNPKG
@wizdom-intranet/services
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.4.13
1.4.12
1.4.11
1.4.10
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
A list of core service to ease Wizdom development
@wizdom-intranet/services
/
src
/
shared
/
httpclient.wrappers
/
__tests__
/
http.null.stub.ts
7 lines
(6 loc)
•
245 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
IHttpClient
,
IHttpClientResponse
}
from
"../http.interfaces"
;
export
class
HttpClientNullStub
implements
IHttpClient
{
get
(
url
:
string
):
Promise
<
IHttpClientResponse
> {
throw
"get called un HttpClientNullStub"
; } }