mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Use | undefined instead of ? for some readonly properties on objects that we control
For #124362 This includes: - Event objects - Context objects passed to providers - Managed objects such as `TextEditor`
This commit is contained in:
@@ -1477,9 +1477,9 @@ export interface ISignatureHelpDto {
|
||||
|
||||
export interface ISignatureHelpContextDto {
|
||||
readonly triggerKind: modes.SignatureHelpTriggerKind;
|
||||
readonly triggerCharacter?: string;
|
||||
readonly triggerCharacter: string | undefined;
|
||||
readonly isRetrigger: boolean;
|
||||
readonly activeSignatureHelp?: ISignatureHelpDto;
|
||||
readonly activeSignatureHelp: ISignatureHelpDto | undefined;
|
||||
}
|
||||
|
||||
export interface IInlayHintDto {
|
||||
|
||||
Reference in New Issue
Block a user