web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
345 B

  1. import '../_version.js';
  2. /**
  3. * Returns true if two URLs have the same `.href` property. The URLS can be
  4. * relative, and if they are the current location href is used to resolve URLs.
  5. *
  6. * @private
  7. * @param {string} url1
  8. * @param {string} url2
  9. * @return {boolean}
  10. */
  11. export declare function urlsMatch(url1: string, url2: string): boolean;