DefinitelyTyped/types/mdurl/parse.d.ts
Junyoung Choi 7e936df852 Add mdurl (#20581)
* Add mdurl

* Add strictFunctionTypes property to tsconfig
2017-10-16 14:49:43 -07:00

6 lines
116 B
TypeScript

import { Url } from './'
declare function parse(input: string, slashesDenoteHost?: boolean): Url;
export = parse;