Revert "Create new type definition for 'is-url' (#4013)"

This reverts commit 014b58cb40.
This commit is contained in:
Acid Chicken (硫酸鶏) 2019-02-04 01:30:33 +09:00
parent 206b57b962
commit c4f7491322
No known key found for this signature in database
GPG key ID: 5388F56C75B677A1
3 changed files with 2 additions and 8 deletions

View file

@ -46,6 +46,7 @@
"@types/gulp-util": "3.0.34",
"@types/is-root": "1.0.0",
"@types/is-svg": "3.0.0",
"@types/is-url": "1.2.28",
"@types/js-yaml": "3.12.0",
"@types/jsdom": "12.2.1",
"@types/katex": "0.5.0",

View file

@ -1,7 +0,0 @@
declare module 'is-url' {
function isUrl(string: string): boolean;
namespace isUrl {} // Hack
export = isUrl;
}

View file

@ -6,7 +6,7 @@ import * as fs from 'fs';
import { URL } from 'url';
import * as yaml from 'js-yaml';
import { Source, Mixin } from './types';
import * as isUrl from 'is-url';
import isUrl = require('is-url');
import * as pkg from '../../package.json';
/**