export declare const source = "const mongoose = require('mongoose/browser');\n\n{{!-- Import and export all schema files --}}\n{{#each names}}\nmodule.exports.{{ this }}Schema = require('./fhir/{{ this }}.js').{{ this }}Schema;\n{{/each}}\n\n{{!-- Create and export models --}}\n{{#each names}}\nmodule.exports.{{ this }} = mongoose.model('{{ this }}', module.exports.{{ this }}Schema);\n{{/each}}\n"; export interface TemplateContext { names: Array; } declare const _default: HandlebarsTemplateDelegate; export default _default; //# sourceMappingURL=allModelsTemplate.d.ts.map