UNPKG

631 BTypeScriptView Raw
1import URI from '../common/uri';
2import { OpenHandler } from './opener-service';
3import { WindowService } from './window/window-service';
4import { ExternalUriService } from './external-uri-service';
5export interface HttpOpenHandlerOptions {
6 openExternal?: boolean;
7}
8export declare class HttpOpenHandler implements OpenHandler {
9 readonly id = "http";
10 protected readonly windowService: WindowService;
11 protected readonly externalUriService: ExternalUriService;
12 canHandle(uri: URI, options?: HttpOpenHandlerOptions): number;
13 open(uri: URI): Promise<undefined>;
14}
15//# sourceMappingURL=http-open-handler.d.ts.map
\No newline at end of file