mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 22:35:23 +08:00
10 lines
349 B
TypeScript
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;
|
|
}
|