@@ -18,6 +18,7 @@ declare module monaco.languages.graphql {
1818 import type { Options as PrettierConfig } from 'prettier' ;
1919
2020 import { MonacoGraphQLApi } from '../api' ;
21+
2122 export interface IDisposable {
2223 dispose ( ) : void ;
2324 }
@@ -87,18 +88,18 @@ declare module monaco.languages.graphql {
8788 export interface ICreateData {
8889 languageId : string ;
8990 enableSchemaRequest : boolean ;
90- schemaConfig : SchemaConfig ;
91+ schemaConfig : SchemaConfiguration ;
9192 schemaLoader : ( ) => Promise < SchemaResponse > ;
9293 formattingOptions ?: FormattingOptions ;
9394 }
9495
9596 export interface LanguageServiceDefaults {
9697 readonly onDidChange : IEvent < LanguageServiceDefaults > ;
97- readonly schemaConfig : SchemaConfig ;
98+ readonly schemaConfig : SchemaConfiguration ;
9899 readonly formattingOptions : FormattingOptions ;
99100 readonly modeConfiguration : ModeConfiguration ;
100- setSchemaConfig ( options : SchemaConfig ) : void ;
101- updateSchemaConfig ( options : Partial < SchemaOptoons > ) : void ;
101+ setSchemaConfig ( options : SchemaConfiguration ) : void ;
102+ updateSchemaConfig ( options : Partial < SchemaConfiguration > ) : void ;
102103 setSchemaUri ( schemaUri : string ) : void ;
103104 setFormattingOptions ( formattingOptions : FormattingOptions ) : void ;
104105 setModeConfiguration ( modeConfiguration : ModeConfiguration ) : void ;
0 commit comments