版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

16 wiersze
409 B

  1. /// <reference types="node" />
  2. import Location from './Location';
  3. import { URL } from 'url';
  4. /**
  5. * Helper class for getting the URL relative to a Location object.
  6. */
  7. export default class RelativeURL {
  8. /**
  9. * Returns a URL relative to the given Location object.
  10. *
  11. * @param location Location.
  12. * @param url URL.
  13. */
  14. static getAbsoluteURL(location: Location, url: string): URL;
  15. }