Make undefined typings explicit

This commit is contained in:
Willian Mitsuda 2022-02-27 13:22:59 -03:00
parent ddeaf73bf3
commit 7e85f1fcca
1 changed files with 7 additions and 7 deletions

View File

@ -13,13 +13,13 @@ import { Metadata } from "../sourcify/useSourcify";
type DecoratedAddressLinkProps = {
address: string;
selectedAddress?: string;
addressCtx?: AddressContext;
creation?: boolean;
miner?: boolean;
selfDestruct?: boolean;
txFrom?: boolean;
txTo?: boolean;
selectedAddress?: string | undefined;
addressCtx?: AddressContext | undefined;
creation?: boolean | undefined;
miner?: boolean | undefined;
selfDestruct?: boolean | undefined;
txFrom?: boolean | undefined;
txTo?: boolean | undefined;
metadata?: Metadata | null | undefined;
};