@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
17 lines • 702 B
JavaScript
;
// Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.IdentifierValidation = void 0;
const Validation_1 = require("./Validation");
const Native_1 = require("./Native");
const Object_1 = require("./Object");
function required() {
return {
packageId: Native_1.native('string'),
moduleName: Native_1.native('string'),
entityName: Native_1.native('string')
};
}
exports.IdentifierValidation = Object_1.object('Identifier', required, Validation_1.noFields);
//# sourceMappingURL=IdentifierValidation.js.map