13 lines
377 B
Plaintext
13 lines
377 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.OperationSummary = void 0;
|
|
const utils_1 = require("../utils");
|
|
const OperationSummary = () => {
|
|
return {
|
|
Operation(operation, ctx) {
|
|
(0, utils_1.validateDefinedAndNonEmpty)('summary', operation, ctx);
|
|
},
|
|
};
|
|
};
|
|
exports.OperationSummary = OperationSummary;
|