Files
DefinitelyTyped/types/math-sign/index.d.ts
T

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;