UNPKG

@mysten/dapp-kit

Version:

A collection of React hooks and components for interacting with the Sui blockchain and wallets.

5 lines (3 loc) 146 B
// Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<T>;