DefinitelyTyped/types/math-sign/index.d.ts
2019-04-03 13:24:54 +01:00

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;