13 lines
359 B
Plaintext
13 lines
359 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.InfoLicenseUrl = void 0;
|
|
const utils_1 = require("../utils");
|
|
const InfoLicenseUrl = () => {
|
|
return {
|
|
License(license, ctx) {
|
|
(0, utils_1.validateDefinedAndNonEmpty)('url', license, ctx);
|
|
},
|
|
};
|
|
};
|
|
exports.InfoLicenseUrl = InfoLicenseUrl;
|