summaryrefslogtreecommitdiff
path: root/lib/epub.js/types/utils/url.d.ts
blob: bf30dfb67329c3c953202277f4ef583135d94b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Path from "./path";

export default class Url {
  constructor(urlString: string, baseString: string);

  path(): Path;

  resolve(what: string): string;

  relative(what: string): string;

  toString(): string;
}