mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
427 B
TypeScript
14 lines
427 B
TypeScript
// Type definitions for is-absolute 1.0
|
|
// Project: https://github.com/jonschlinkert/is-absolute
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = isAbsolute;
|
|
|
|
declare function isAbsolute(path: string): boolean;
|
|
|
|
declare namespace isAbsolute {
|
|
function posix(path: string): boolean;
|
|
function win32(path: string): boolean;
|
|
}
|