mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
341 B
TypeScript
12 lines
341 B
TypeScript
// Type definitions for absolute 0.0.1
|
|
// Project: https://github.com/bahamas10/node-absolute
|
|
// Definitions by: Aya Morisawa <https://github.com/AyaMorisawa>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/**
|
|
* Test if a path is absolute
|
|
*/
|
|
declare function absolute(path: string): boolean;
|
|
|
|
export default absolute;
|