UNPKG
component-dbs-core
Version:
latest (1.0.1)
1.0.1
1.0.0
DTO objects shared among device backend
bitbucket.org/npco_dev/component-dbs-core
component-dbs-core
/
dist
/
src
/
appsync
/
appSyncClient.d.ts
9 lines
(8 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
AWSAppSyncClient
}
from
'aws-appsync'
;
import
'isomorphic-fetch'
;
import
{
EnvironmentService
}
from
'../config'
;
export
declare
class
AppSyncClient
{
private
envService;
constructor
(
envService
:
EnvironmentService
);
getAppSyncClient
:
() =>
Promise
<
AWSAppSyncClient
<
any
>>; }