*/
export class BrowserFaviconsStore extends Disposable {
private readonly _byHash = new Map<string, string>();
private readonly _onDidChange = this._register(new Emitter<void>());
readonly onDidChange: Event<void> = this._onDidChange.event;
get(hash: string): string | undefined {