@theia/core
Version:
Theia is a cloud & desktop IDE framework implemented in TypeScript.
15 lines • 631 B
TypeScript
import URI from '../common/uri';
import { OpenHandler } from './opener-service';
import { WindowService } from './window/window-service';
import { ExternalUriService } from './external-uri-service';
export interface HttpOpenHandlerOptions {
openExternal?: boolean;
}
export declare class HttpOpenHandler implements OpenHandler {
readonly id = "http";
protected readonly windowService: WindowService;
protected readonly externalUriService: ExternalUriService;
canHandle(uri: URI, options?: HttpOpenHandlerOptions): number;
open(uri: URI): Promise<undefined>;
}
//# sourceMappingURL=http-open-handler.d.ts.map