@theia/core
Version:
Theia is a cloud & desktop IDE framework implemented in TypeScript.
17 lines • 429 B
TypeScript
/**
* The window hash value that is used to spawn a new default window.
*/
export declare const DEFAULT_WINDOW_HASH: string;
/**
* The options for opening new windows.
*/
export interface NewWindowOptions {
/**
* Controls whether the window should be opened externally.
*/
readonly external?: boolean;
}
export interface WindowSearchParams {
[key: string]: string;
}
//# sourceMappingURL=window.d.ts.map