@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
23 lines (22 loc) • 477 B
TypeScript
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;
}