Skip to content

Commit

Permalink
Fix types and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lantua committed Aug 18, 2024
1 parent b74cd58 commit 37b6aa5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion libs/pando/engine/src/node/optimization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function detach(
}
function fold(
x: NumTagFree[],
op: keyof typeof arithmetic,
op: Exclude<keyof typeof arithmetic, 'unique'>,
ex: any
): NumTagFree {
if (x.every((x) => x.op === 'const'))
Expand Down
1 change: 0 additions & 1 deletion libs/sr/formula/src/formulaText.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { CalcResult } from '@genshin-optimizer/pando/engine'
import type { Tag } from './data/util'
import type { PartialMeta } from './calculator'

type Output = PartialMeta
Expand Down

0 comments on commit 37b6aa5

Please sign in to comment.