@tsed/schema
Version:
JsonSchema module for Ts.ED Framework
17 lines • 388 B
JavaScript
import { cleanObject } from "@tsed/core";
/**
* @ignore
* @param info
*/
export function mapOpenSpecInfo(info) {
const { title, description, version, termsOfService, contact, license } = info;
return cleanObject({
version,
title,
description,
termsOfService,
contact,
license
});
}
//# sourceMappingURL=mapOpenSpecInfo.js.map