// Type definitions for resolve-from // Project: https://github.com/sindresorhus/resolve-from // Definitions by: unional // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare function resolveFrom(fromDir: string, moduleId: string): string; declare module "resolve-from" { export = resolveFrom; }