Merge pull request #175248 from microsoft/aiday/removingUselessType

Removing the sorting options type that was added into vscode.d.ts
This commit is contained in:
Aiday Marlen Kyzy 2023-02-23 16:45:41 +01:00 committed by GitHub
commit 41edd9883f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4074,27 +4074,6 @@ declare module 'vscode' {
provideDocumentRangeSemanticTokens(document: TextDocument, range: Range, token: CancellationToken): ProviderResult<SemanticTokens>;
}
/**
* Value-object describing what options formatting should use.
*/
export interface SortingOptions {
/**
* Size of a tab in spaces.
*/
tabSize: number;
/**
* Prefer spaces over tabs.
*/
insertSpaces: boolean;
/**
* Signature for further properties.
*/
[key: string]: boolean | number | string;
}
/**
* Value-object describing what options formatting should use.
*/