graphdb-workbench
Version:
The web application for GraphDB APIs
12 lines (11 loc) • 427 B
TypeScript
import { Service } from '../../providers/service/service';
/**
* Service that provides access to browser window-related functionality.
*/
export declare class WindowService implements Service {
/**
* Returns the current browser window object. The purpose of this encapsulation is to allow for
* better testability and easier mocking of the window object in unit tests.
*/
static getWindow(): Window;
}