Skip to content

Commit

Permalink
Merge pull request #215444 from microsoft/tyriar/format_d_ts
Browse files Browse the repository at this point in the history
Fix space prefix before asterisk in .d.ts
  • Loading branch information
Tyriar committed Jun 13, 2024
2 parents 790501c + 0b12fe1 commit 0b84541
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions src/vscode-dts/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ declare module 'vscode' {

/**
* Represents sources that can cause {@link window.onDidChangeTextEditorSelection selection change events}.
*/
*/
export enum TextEditorSelectionChangeKind {
/**
* Selection changed due to typing in the editor.
Expand Down Expand Up @@ -5186,7 +5186,7 @@ declare module 'vscode' {

/**
* Creates a new list of inline completion items.
*/
*/
constructor(items: InlineCompletionItem[]);
}

Expand Down Expand Up @@ -6365,7 +6365,7 @@ declare module 'vscode' {
export enum ConfigurationTarget {
/**
* Global configuration
*/
*/
Global = 1,

/**
Expand Down Expand Up @@ -11116,8 +11116,8 @@ declare module 'vscode' {
canSelectMany?: boolean;

/**
* An optional interface to implement drag and drop in the tree view.
*/
* An optional interface to implement drag and drop in the tree view.
*/
dragAndDropController?: TreeDragAndDropController<T>;

/**
Expand Down Expand Up @@ -11378,8 +11378,8 @@ declare module 'vscode' {
*/
export interface TreeCheckboxChangeEvent<T> {
/**
* The items that were checked or unchecked.
*/
* The items that were checked or unchecked.
*/
readonly items: ReadonlyArray<[T, TreeItemCheckboxState]>;
}

Expand Down Expand Up @@ -11419,8 +11419,8 @@ declare module 'vscode' {
readonly onDidChangeVisibility: Event<TreeViewVisibilityChangeEvent>;

/**
* An event to signal that an element or root has either been checked or unchecked.
*/
* An event to signal that an element or root has either been checked or unchecked.
*/
readonly onDidChangeCheckboxState: Event<TreeCheckboxChangeEvent<T>>;

/**
Expand Down Expand Up @@ -11697,8 +11697,8 @@ declare module 'vscode' {
}

/**
* Checkbox state of the tree item
*/
* Checkbox state of the tree item
*/
export enum TreeItemCheckboxState {
/**
* Determines an item is unchecked
Expand Down Expand Up @@ -11787,8 +11787,8 @@ declare module 'vscode' {
color?: ThemeColor;

/**
* The {@link TerminalLocation} or {@link TerminalEditorLocationOptions} or {@link TerminalSplitLocationOptions} for the terminal.
*/
* The {@link TerminalLocation} or {@link TerminalEditorLocationOptions} or {@link TerminalSplitLocationOptions} for the terminal.
*/
location?: TerminalLocation | TerminalEditorLocationOptions | TerminalSplitLocationOptions;

/**
Expand Down Expand Up @@ -12668,7 +12668,7 @@ declare module 'vscode' {
/**
* The reason why the document was changed.
* Is `undefined` if the reason is not known.
*/
*/
readonly reason: TextDocumentChangeReason | undefined;
}

Expand Down Expand Up @@ -15374,7 +15374,7 @@ declare module 'vscode' {
*
* @param rendererId The renderer ID to communicate with
* @returns A new notebook renderer messaging object.
*/
*/
export function createRendererMessaging(rendererId: string): NotebookRendererMessaging;
}

Expand Down Expand Up @@ -16369,7 +16369,7 @@ declare module 'vscode' {
/**
* Add breakpoints.
* @param breakpoints The breakpoints to add.
*/
*/
export function addBreakpoints(breakpoints: readonly Breakpoint[]): void;

/**
Expand Down Expand Up @@ -16907,17 +16907,17 @@ declare module 'vscode' {
/**
* Whether it is possible to be signed into multiple accounts at once with this provider.
* If not specified, will default to false.
*/
*/
readonly supportsMultipleAccounts?: boolean;
}

/**
* An {@link Event} which fires when an {@link AuthenticationSession} is added, removed, or changed.
*/
* An {@link Event} which fires when an {@link AuthenticationSession} is added, removed, or changed.
*/
export interface AuthenticationProviderAuthenticationSessionsChangeEvent {
/**
* The {@link AuthenticationSession AuthenticationSessions} of the {@link AuthenticationProvider} that have been added.
*/
*/
readonly added: readonly AuthenticationSession[] | undefined;

/**
Expand Down Expand Up @@ -17144,7 +17144,7 @@ declare module 'vscode' {
* @param id Identifier for the controller, must be globally unique.
* @param label A human-readable label for the controller.
* @returns An instance of the {@link TestController}.
*/
*/
export function createTestController(id: string, label: string): TestController;
}

Expand Down Expand Up @@ -18995,7 +18995,7 @@ declare module 'vscode' {
* Represents a language model response.
*
* @see {@link LanguageModelAccess.chatRequest}
*/
*/
export interface LanguageModelChatResponse {

/**
Expand Down

0 comments on commit 0b84541

Please sign in to comment.