7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
|
/**
|
||
|
* If either :// or // is present consider it to be an absolute url
|
||
|
*
|
||
|
* @param url string
|
||
|
*/
|
||
|
export declare function isAbsoluteUrl(url: string): boolean;
|