Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
CalionVarduk committed Mar 9, 2020
2 parents e57b375 + 33c7fef commit 46ed78c
Show file tree
Hide file tree
Showing 7 changed files with 5,619 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frl-ts-arithmetic",
"version": "0.0.1",
"version": "0.9.0",
"description": "A lightweight math & arithmetic framework for TypeScript",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/core/fixed-precision.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/** Represents all possible precisions for the fixed-point numbers. */
export type FixedPrecision = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;
Loading

0 comments on commit 46ed78c

Please sign in to comment.