mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
16 lines
417 B
TypeScript
16 lines
417 B
TypeScript
// Type definitions for resolve-from
|
|
// Project: https://github.com/sindresorhus/resolve-from
|
|
// Definitions by: unional <https://github.com/unional>, tswaters <https://github.com/tswaters>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module "resolve-from" {
|
|
|
|
function resolveFrom(fromDir: string, moduleId: string): string;
|
|
|
|
namespace resolveFrom {
|
|
|
|
}
|
|
|
|
export = resolveFrom;
|
|
}
|