mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 15:25:47 +01:00
change type of _serviceBrand from any to undefined, #79918
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
|
||||
import { ICredentialsService } from 'vs/workbench/services/credentials/common/credentials';
|
||||
import { registerSingleton } from 'vs/platform/instantiation/common/extensions';
|
||||
import { ServiceIdentifier } from 'vs/platform/instantiation/common/instantiation';
|
||||
import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/common/environmentService';
|
||||
|
||||
export interface ICredentialsProvider {
|
||||
@@ -18,7 +17,7 @@ export interface ICredentialsProvider {
|
||||
|
||||
export class BrowserCredentialsService implements ICredentialsService {
|
||||
|
||||
_serviceBrand!: ServiceIdentifier<any>;
|
||||
_serviceBrand: undefined;
|
||||
|
||||
private credentialsProvider: ICredentialsProvider;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user