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.
|
- /// <reference types="node" />
- import Location from './Location';
- import { URL } from 'url';
- /**
- * Helper class for getting the URL relative to a Location object.
- */
- export default class RelativeURL {
- /**
- * Returns a URL relative to the given Location object.
- *
- * @param location Location.
- * @param url URL.
- */
- static getAbsoluteURL(location: Location, url: string): URL;
- }
|