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.
10 lines
370 B
10 lines
370 B
|
2 months ago
|
/// <reference types="node" />
|
||
|
|
import { type UrlWithStringQuery } from 'url';
|
||
|
|
export declare function isRelativeUrl(url: string): boolean;
|
||
|
|
export declare function isExternalUrl(url: string): boolean;
|
||
|
|
export declare function isDataUrl(url: string): boolean;
|
||
|
|
/**
|
||
|
|
* Parses string url into URL object.
|
||
|
|
*/
|
||
|
|
export declare function parseUrl(url: string): UrlWithStringQuery;
|