@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
16 lines • 620 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.AnyValidation = void 0;
const Native_1 = require("./Native");
const Object_1 = require("./Object");
const Validation_1 = require("./Validation");
function required() {
return {
typeUrl: Native_1.native('string'),
value: Native_1.native('string')
};
}
exports.AnyValidation = Object_1.object('Any', required, Validation_1.noFields);
//# sourceMappingURL=AnyValidation.js.map