Skip to content

Commit c46a189

Browse files
committed
format
1 parent 8deb1d4 commit c46a189

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

packages/runtime/src/types.ts

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ export interface GatewayConfigContext {
8888
}
8989

9090
export interface GatewayContext
91-
extends GatewayConfigContext,
92-
YogaInitialContext {
91+
extends GatewayConfigContext, YogaInitialContext {
9392
/**
9493
* Environment agnostic HTTP headers provided with the request.
9594
*/
@@ -284,8 +283,9 @@ export interface GatewayConfigSubgraph<
284283
subgraph: UnifiedGraphConfig;
285284
}
286285

287-
export interface GatewayConfigSchemaBase<TContext extends Record<string, any>>
288-
extends GatewayConfigBase<TContext> {
286+
export interface GatewayConfigSchemaBase<
287+
TContext extends Record<string, any>,
288+
> extends GatewayConfigBase<TContext> {
289289
/**
290290
* Additional GraphQL schema type definitions.
291291
*/
@@ -345,12 +345,11 @@ export interface GatewayHiveCDNOptions {
345345
circuitBreaker?: CircuitBreakerConfiguration;
346346
}
347347

348-
export interface GatewayHiveReportingOptions
349-
extends Omit<
350-
HiveConsolePluginOptions,
351-
// we omit this property because we define persisted documents in GatewayHivePersistedDocumentsOptions
352-
'experimental__persistedDocuments'
353-
> {
348+
export interface GatewayHiveReportingOptions extends Omit<
349+
HiveConsolePluginOptions,
350+
// we omit this property because we define persisted documents in GatewayHivePersistedDocumentsOptions
351+
'experimental__persistedDocuments'
352+
> {
354353
type: 'hive';
355354
/** GraphQL Hive registry access token. */
356355
token: string;
@@ -376,8 +375,7 @@ export interface GatewayGraphOSOptions {
376375
apiKey: string;
377376
}
378377

379-
export interface GatewayGraphOSManagedFederationOptions
380-
extends GatewayGraphOSOptions {
378+
export interface GatewayGraphOSManagedFederationOptions extends GatewayGraphOSOptions {
381379
/**
382380
* Maximum number of retries to attempt when fetching the schema from the managed federation up link.
383381
*/

0 commit comments

Comments
 (0)