File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments