mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
309 B
TypeScript
7 lines
309 B
TypeScript
import protocols = require('protocols');
|
|
|
|
protocols('git+ssh://git@some-host.com/and-the-path/name'); // $ExpectType string[]
|
|
protocols('http://example.com', true); // $ExpectType string
|
|
protocols('ftp://example.com', 1); // $ExpectType string
|
|
protocols('https://example.com', false); // $ExpectType string[]
|