Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve doc comment #174438

Merged
merged 1 commit into from Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/vs/editor/browser/editorBrowser.ts
Expand Up @@ -863,7 +863,8 @@ export interface ICodeEditor extends editorCommon.IEditor {

/**
* All decorations added through this call will get the ownerId of this editor.
* @deprecated
* @deprecated Use `createDecorationsCollection`
* @see createDecorationsCollection
*/
deltaDecorations(oldDecorations: string[], newDecorations: IModelDeltaDecoration[]): string[];

Expand Down
3 changes: 2 additions & 1 deletion src/vs/monaco.d.ts
Expand Up @@ -5612,7 +5612,8 @@ declare namespace monaco.editor {
getDecorationsInRange(range: Range): IModelDecoration[] | null;
/**
* All decorations added through this call will get the ownerId of this editor.
* @deprecated
* @deprecated Use `createDecorationsCollection`
* @see createDecorationsCollection
*/
deltaDecorations(oldDecorations: string[], newDecorations: IModelDeltaDecoration[]): string[];
/**
Expand Down