Skip to content

Commit

Permalink
Merge branch 'master' into uri-converter
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed May 15, 2024
2 parents b098e34 + 6367893 commit bb1a5ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/language-service/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ export interface LanguageServicePlugin<P = any> {
signatureHelpTriggerCharacters?: string[];
signatureHelpRetriggerCharacters?: string[];
autoFormatTriggerCharacters?: string[];
/**
* @deprecated languageService instance must be passed
*/
create(context: ServiceContext): LanguageServicePluginInstance<P>;
create(context: ServiceContext, languageService: LanguageService): LanguageServicePluginInstance<P>;
}

Expand Down

0 comments on commit bb1a5ca

Please sign in to comment.