UNPKG

@mysten/dapp-kit

Version:

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

10 lines (8 loc) 265 B
// Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 /** * Utility for compile-time exhaustiveness checking. */ export function assertUnreachable(value: never): never { throw new Error(`ERROR! Encountered an unexpected value: ${value}`); }