Skip to content

Commit

Permalink
Use jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Apr 8, 2019
1 parent 49505ac commit 61999db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cssLanguageService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export interface LanguageService {
findDocumentSymbols(document: TextDocument, stylesheet: Stylesheet): SymbolInformation[];
doCodeActions(document: TextDocument, range: Range, context: CodeActionContext, stylesheet: Stylesheet): Command[];
doCodeActions2(document: TextDocument, range: Range, context: CodeActionContext, stylesheet: Stylesheet): CodeAction[];
/** deprecated, use findDocumentColors instead */
/**
* @deprecated use findDocumentColors instead
*/
findColorSymbols(document: TextDocument, stylesheet: Stylesheet): Range[];
findDocumentColors(document: TextDocument, stylesheet: Stylesheet): ColorInformation[];
getColorPresentations(document: TextDocument, stylesheet: Stylesheet, color: Color, range: Range): ColorPresentation[];
Expand Down

0 comments on commit 61999db

Please sign in to comment.