Skip to content

Commit 8ec314a

Browse files
author
Benjamin Pasero
committed
💄
1 parent 6892cfc commit 8ec314a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/vs/base/browser/ui/selectBox/selectBox.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ export interface ISelectBoxDelegate {
2222

2323
// Public SelectBox Interface
2424
readonly onDidSelect: Event<ISelectData>;
25-
setOptions(options: ISelectOptionItem[], selected?: number);
25+
setOptions(options: ISelectOptionItem[], selected?: number): void;
2626
select(index: number): void;
27-
setAriaLabel(label: string);
27+
setAriaLabel(label: string): void;
2828
focus(): void;
2929
blur(): void;
3030
dispose(): void;

src/vs/base/browser/ui/splitview/splitview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export class SplitView extends Disposable {
226226
// Add sash
227227
if (this.viewItems.length > 1) {
228228
const orientation = this.orientation === Orientation.VERTICAL ? Orientation.HORIZONTAL : Orientation.VERTICAL;
229-
const layoutProvider = this.orientation === Orientation.VERTICAL ? { getHorizontalSashTop: sash => this.getSashPosition(sash) } : { getVerticalSashLeft: sash => this.getSashPosition(sash) };
229+
const layoutProvider = this.orientation === Orientation.VERTICAL ? { getHorizontalSashTop: (sash: Sash) => this.getSashPosition(sash) } : { getVerticalSashLeft: (sash: Sash) => this.getSashPosition(sash) };
230230
const sash = new Sash(this.sashContainer, layoutProvider, {
231231
orientation,
232232
orthogonalStartSash: this.orthogonalStartSash,

0 commit comments

Comments
 (0)