resolve-uri.d.ts 150 B

1234
  1. /**
  2. * Attempts to resolve `input` URL/path relative to `base`.
  3. */
  4. export default function resolve(input: string, base: string | undefined): string;