Files
DefinitelyTyped/resolve-from/resolve-from.d.ts
2016-04-01 00:56:20 -07:00

10 lines
349 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 module "resolve-from" {
export = resolveFrom;
}