Skip to content

Commit

Permalink
reduce strictness of type until mudConfig refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs committed Sep 24, 2023
1 parent 24efe6a commit 15a0310
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/common/src/codegen/utils/loadUserTypesFile.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { readFileSync } from "fs";
import path from "path";
import { SolidityUserDefinedType, extractUserTypes } from "./extractUserTypes";
import { SchemaAbiType } from "@latticexyz/schema-type";
import { MUDError } from "../../errors";

export type UserType = {
filePath: string;
internalType: SchemaAbiType;
internalType: string;
};

export function loadAndExtractUserTypes(
Expand Down

0 comments on commit 15a0310

Please sign in to comment.