Fix search interface name (#214029)

Fix interface name
This commit is contained in:
Rob Lourens 2024-05-31 11:13:15 -07:00 committed by GitHub
parent a003d5fb8d
commit df299ea07b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ export interface IExtHostSearch extends ExtHostSearchShape {
export const IExtHostSearch = createDecorator<IExtHostSearch>('IExtHostSearch');
export class ExtHostSearch implements ExtHostSearchShape {
export class ExtHostSearch implements IExtHostSearch {
protected readonly _proxy: MainThreadSearchShape = this.extHostRpc.getProxy(MainContext.MainThreadSearch);
protected _handlePool: number = 0;