Skip to content

Commit c8aa165

Browse files
committed
replace interface with type
1 parent 5747bfa commit c8aa165

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/thirdweb/src/extensions/prebuilts/deploy-published.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export type DeployContractfromDeployMetadataOptions = {
129129
salt?: string;
130130
};
131131

132-
interface DynamicParams {
132+
type DynamicParams = {
133133
type: "address" | "address[]" | "bytes" | "bytes[]";
134134
refContracts: {
135135
publisherAddress: string;
@@ -146,7 +146,7 @@ interface DynamicParams {
146146
>;
147147
}
148148

149-
interface ImplementationConstructorParam {
149+
type ImplementationConstructorParam = {
150150
defaultValue?: string;
151151
dynamicValue?: DynamicParams;
152152
}

0 commit comments

Comments
 (0)