Skip to content

Commit

Permalink
make it readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Mar 21, 2024
1 parent a59e91a commit 3e0e11d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/common/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Hex } from "viem";
import { ResourceType } from "./resourceTypes";

export type Resource = {
resourceId: Hex;
type: ResourceType;
namespace: string;
name: string;
readonly resourceId: Hex;
readonly type: ResourceType;
readonly namespace: string;
readonly name: string;
};

0 comments on commit 3e0e11d

Please sign in to comment.