UNPKG

@aptos-labs/js-pro

Version:

State management and library of utilities for Aptos applications.

12 lines (9 loc) 297 B
// Copyright © Aptos // SPDX-License-Identifier: Apache-2.0 import { NetworkInfo } from "./networks.js"; export type WithNetwork<T> = T & { /** * The network to use for the request. If not set, the network of the `AptosJSProClient` instance will be used. */ network?: NetworkInfo; };