UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

8 lines (7 loc) 408 B
import { IWindowLocationService } from '@docsvision/webclient/Platform/$WindowLocation'; /** Сервис для доступа к функциям объекта window.location */ export declare class WindowLocationService implements IWindowLocationService { get href(): string; set href(val: string); open(url?: string, target?: string, features?: string, replace?: boolean): Window | null; }