Remove @types/node dep for simple browser

This package does not use any node modules
This commit is contained in:
Matt Bierner
2021-07-22 17:16:33 -07:00
parent 134c345351
commit cd48aa9544
4 changed files with 5 additions and 8 deletions

View File

@@ -7,7 +7,10 @@ import * as vscode from 'vscode';
import * as nls from 'vscode-nls';
import { SimpleBrowserManager } from './simpleBrowserManager';
declare const URL: typeof import('url').URL;
declare class URL {
constructor(input: string, base?: string | URL);
hostname: string;
}
const localize = nls.loadMessageBundle();