UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

8 lines (5 loc) 173 B
// SPDX-License-Identifier: Apache-2.0 import {type Facade} from './facade.js'; export type FacadeObjectConstructor<T extends Facade<B>, B> = { new (instance: B): T; };