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

8 lines
345 B
TypeScript

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