mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
390 B
TypeScript
15 lines
390 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
|
|
|
|
declare module "abs" {
|
|
/**
|
|
* Compute the absolute path of an input.
|
|
* @param input The input path.
|
|
*/
|
|
function Abs(input: string): string;
|
|
|
|
export default Abs;
|
|
}
|