summaryrefslogtreecommitdiff
path: root/op_crates/url/internal.d.ts
blob: f852928d354e9b896906f3163b162480f120dd99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.

/// <reference no-default-lib="true" />
/// <reference lib="esnext" />

declare namespace globalThis {
  declare namespace __bootstrap {
    declare var url: {
      URL: typeof URL;
      URLSearchParams: typeof URLSearchParams;
    };
  }
}