@gapi/angular-client
Version:
##### This module is intended to be used with [Gapi Server](https://github.com/Stradivario/gapi) but can be used with every GraphQL Server
9 lines (8 loc) • 332 B
TypeScript
import { InjectionToken } from '@angular/core';
export interface GapiApolloClientOptions {
uri?: string;
authorization?: string;
subscriptionsUri?: any;
}
export declare const GAPI_APOLLO_MODULE_CONFIG: InjectionToken<GapiApolloClientOptions>;
export declare const GAPI_APOLLO_MODULE_DI_CONFIG: GapiApolloClientOptions;