Skip to content

Commit afd1c83

Browse files
Remove the undefined in the api (microsoft#258295)
Remove the undefined The underlying implementation only ever returns an array.. so this makes sense to only return an array.
1 parent 89bb89c commit afd1c83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vscode-dts/vscode.proposed.secretStorageKeys.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ declare module 'vscode' {
1111
/**
1212
* Retrieve the keys of all the secrets stored by this extension.
1313
*/
14-
keys(): Thenable<string[] | undefined>;
14+
keys(): Thenable<string[]>;
1515
}
1616
}

0 commit comments

Comments
 (0)