window.d.ts 317 B

12345678910
  1. /**
  2. * @license
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. import { Url } from '../../builders/url_sanitizer';
  6. /**
  7. * open calls {@link Window.open} on the given {@link Window}, given a
  8. * target {@link Url}.
  9. */
  10. export declare function open(win: Window, url: Url, target?: string, features?: string): Window | null;