mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 05:20:24 +08:00
14 lines
368 B
TypeScript
14 lines
368 B
TypeScript
// Type definitions for abs 1.1.0
|
|
// Project: https://github.com/IonicaBizau/node-abs
|
|
// Definitions by: Aya Morisawa <https://github.com/AyaMorisawa>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
/**
|
|
* Compute the absolute path of an input.
|
|
* @param input The input path.
|
|
*/
|
|
declare function Abs(input: string): string;
|
|
|
|
export default Abs;
|