1 | import URI from '../common/uri';
|
2 | import { OpenHandler } from './opener-service';
|
3 | import { WindowService } from './window/window-service';
|
4 | import { ExternalUriService } from './external-uri-service';
|
5 | export interface HttpOpenHandlerOptions {
|
6 | openExternal?: boolean;
|
7 | }
|
8 | export 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 |
|
\ | No newline at end of file |