mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add no implicit any to the strict null check (#5635)
* wip * working through adding no implicit any
This commit is contained in:
@@ -47,14 +47,26 @@ suite('Extension Gallery Service', () => {
|
||||
|
||||
// {{SQL CARBON EDIT}}
|
||||
test('sortByField', () => {
|
||||
let a = {
|
||||
let a: {
|
||||
extensionId: string | undefined;
|
||||
extensionName: string | undefined;
|
||||
displayName: string | undefined;
|
||||
shortDescription: string | undefined;
|
||||
publisher: { displayName: string | undefined, publisherId: string | undefined, publisherName: string | undefined; } | undefined;
|
||||
} = {
|
||||
extensionId: undefined,
|
||||
extensionName: undefined,
|
||||
displayName: undefined,
|
||||
shortDescription: undefined,
|
||||
publisher: undefined
|
||||
};
|
||||
let b = {
|
||||
let b: {
|
||||
extensionId: string | undefined;
|
||||
extensionName: string | undefined;
|
||||
displayName: string | undefined;
|
||||
shortDescription: string | undefined;
|
||||
publisher: { displayName: string | undefined, publisherId: string | undefined, publisherName: string | undefined; } | undefined;
|
||||
} = {
|
||||
extensionId: undefined,
|
||||
extensionName: undefined,
|
||||
displayName: undefined,
|
||||
|
||||
Reference in New Issue
Block a user