Files
DefinitelyTyped/types/file-url/index.d.ts
2017-03-24 14:27:52 -07:00

15 lines
374 B
TypeScript

// Type definitions for file-url v1.0.1
// Project: https://github.com/sindresorhus/file-url
// Definitions by: MEDIA CHECK s.r.o. <http://www.mediacheck.cz/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Convert a path to a file URL.
*/
declare function fileUrl(path:string):string;
/**
* Convert a path to a file URL.
*/
export = fileUrl;