mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-14 22:10:30 +00:00
9 lines
287 B
TypeScript
9 lines
287 B
TypeScript
// Type definitions for math-sign 1.0
|
|
// Project: https://github.com/sindresorhus/math-sign#readme
|
|
// Definitions by: Daniel Cassidy <https://github.com/djcsdy>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function sign(x: number): number;
|
|
|
|
export = sign;
|