UNPKG

@digitalasset/daml-ledger

Version:
23 lines (22 loc) 477 B
import { Timestamp } from "./Timestamp"; /** * A representation of information abput dar package. */ export interface PackageDetails { /** * An identifier for the package */ packageId: string; /** * The size of the package */ packageSize: number; /** * Time when the package is uploaded */ knownSince?: Timestamp; /** * A texttual description associated with the package */ sourceDescription: string; }