Fix merge conflicts

This commit is contained in:
thepaperpilot 2023-05-17 00:01:28 -05:00
parent 539282bef8
commit a55f99daed
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import type { OptionsFunc, Replace } from "features/feature";
import type { CoercableComponent, OptionsFunc, Replace } from "features/feature";
import { setDefault } from "features/feature";
import type { Resource } from "features/resources/resource";
import Formula from "game/formulas/formulas";
@ -12,6 +12,7 @@ import { createLazyProxy } from "util/proxies";
import type { Ref } from "vue";
import { computed, unref } from "vue";
import { GenericDecorator } from "./decorators/common";
import { createBooleanRequirement } from "game/requirements";
/** An object that configures a {@link Conversion}. */
export interface ConversionOptions {

View file

@ -2,7 +2,7 @@ import { Resource } from "features/resources/resource";
import { NonPersistent } from "game/persistence";
import Decimal, { DecimalSource, format } from "util/bignum";
import { Computable, ProcessedComputable, convertComputable } from "util/computed";
import { Ref, computed, ref, unref } from "vue";
import { ComputedRef, Ref, computed, ref, unref } from "vue";
import * as ops from "./operations";
import type {
EvaluateFunction,