mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-30 10:35:22 +08:00
11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
// Type definitions for is-url v1.2.1
|
|
// Project: https://github.com/segmentio/is-url
|
|
// Definitions by: Ryota Murohoshi <https://github.com/RyotaMurohoshi>
|
|
// Definitions: https://github.com/RyotaMurohoshi/DefinitelyTyped
|
|
|
|
declare module "is-url" {
|
|
export = isUrl
|
|
|
|
function isUrl(string: string): boolean;
|
|
}
|