/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * * @format */ 'use strict'; var formatGeneratedModule = function formatGeneratedModule(_ref) { var moduleName = _ref.moduleName, documentType = _ref.documentType, docText = _ref.docText, concreteText = _ref.concreteText, typeText = _ref.typeText, hash = _ref.hash, sourceHash = _ref.sourceHash; var documentTypeImport = documentType ? "import type { ".concat(documentType, " } from 'relay-runtime';") : ''; var docTextComment = docText ? '\n/*\n' + docText.trim() + '\n*/\n' : ''; var hashText = hash ? "\n * ".concat(hash) : ''; return "/**\n * ".concat('@', "flow", hashText, "\n */\n\n/* eslint-disable */\n\n'use strict';\n\n/*::\n").concat(documentTypeImport, "\n").concat(typeText || '', "\n*/\n\n").concat(docTextComment, "\nconst node/*: ").concat(documentType || 'empty', "*/ = ").concat(concreteText, ";\n// prettier-ignore\n(node/*: any*/).hash = '").concat(sourceHash, "';\nmodule.exports = node;\n"); }; module.exports = formatGeneratedModule;