// Type definitions for file-url v1.0.1 // Project: https://github.com/sindresorhus/file-url // Definitions by: MEDIA CHECK s.r.o. // 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. */ declare module "file-url" { export = fileUrl; }