mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
use readonly T[] instead of ReadonlyArray<T>
This commit is contained in:
@@ -315,8 +315,8 @@ export interface ISerializedDocumentFilter {
|
||||
}
|
||||
|
||||
export interface ISerializedSignatureHelpProviderMetadata {
|
||||
readonly triggerCharacters: ReadonlyArray<string>;
|
||||
readonly retriggerCharacters: ReadonlyArray<string>;
|
||||
readonly triggerCharacters: readonly string[];
|
||||
readonly retriggerCharacters: readonly string[];
|
||||
}
|
||||
|
||||
export interface MainThreadLanguageFeaturesShape extends IDisposable {
|
||||
|
||||
Reference in New Issue
Block a user