diff options
Diffstat (limited to '')
| -rw-r--r-- | src/utils/nat.ts (renamed from src/nat.ts) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nat.ts b/src/utils/nat.ts index 7491e82..af8f3da 100644 --- a/src/nat.ts +++ b/src/utils/nat.ts @@ -1,4 +1,4 @@ -import { Op } from './util'; +import { Op } from './theorem'; export type Add<A extends Op, B extends Op> = { op: '+'; a: A; b: B }; export type Multiply<A extends Op, B extends Op> = { op: '*'; a: A; b: B }; |
