mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 01:25:37 -05:00
Remove typings and replace missing methods with vscodes (#8217)
* remove typings and replace missing methods with vscodes * fix strict-null-checks * fix tests
This commit is contained in:
@@ -5,9 +5,10 @@
|
||||
|
||||
import { localize } from 'vs/nls';
|
||||
import { tocData as vstocData, ITOCEntry } from 'vs/workbench/contrib/preferences/browser/settingsLayout';
|
||||
import { assign } from 'vs/base/common/objects';
|
||||
|
||||
// Copy existing table of contents and append
|
||||
export const tocData: ITOCEntry = Object.assign({}, vstocData);
|
||||
export const tocData: ITOCEntry = assign({}, vstocData);
|
||||
let sqlTocItems: ITOCEntry[] = [{
|
||||
id: 'data',
|
||||
label: localize('data', "Data"),
|
||||
|
||||
Reference in New Issue
Block a user