UNPKG

@digitalasset/daml-ledger

Version:
20 lines (19 loc) 363 B
import { PackageStatus } from "./PackageStatus"; /** * The status of the package. * * Example: * * ``` * { * status: PackageStatus.REGISTERED * } * ``` * * To express values in a more concise way, you can have a look at the {@link ValueHelpers}. * * @see PackageStatus */ export interface GetPackageStatusResponse { status: PackageStatus; }