Make undefined typings explicit
This commit is contained in:
parent
ddeaf73bf3
commit
7e85f1fcca
|
@ -13,13 +13,13 @@ import { Metadata } from "../sourcify/useSourcify";
|
||||||
|
|
||||||
type DecoratedAddressLinkProps = {
|
type DecoratedAddressLinkProps = {
|
||||||
address: string;
|
address: string;
|
||||||
selectedAddress?: string;
|
selectedAddress?: string | undefined;
|
||||||
addressCtx?: AddressContext;
|
addressCtx?: AddressContext | undefined;
|
||||||
creation?: boolean;
|
creation?: boolean | undefined;
|
||||||
miner?: boolean;
|
miner?: boolean | undefined;
|
||||||
selfDestruct?: boolean;
|
selfDestruct?: boolean | undefined;
|
||||||
txFrom?: boolean;
|
txFrom?: boolean | undefined;
|
||||||
txTo?: boolean;
|
txTo?: boolean | undefined;
|
||||||
metadata?: Metadata | null | undefined;
|
metadata?: Metadata | null | undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue