(typeName: string, type: ts.TypeBuilder)
| 107 | } |
| 108 | |
| 109 | function buildExport(typeName: string, type: ts.TypeBuilder) { |
| 110 | const declaration = ts.typeDeclaration(typeName, type) |
| 111 | return ts.moduleExport(declaration.addGenericParameter(extArgsParam)) |
| 112 | } |
| 113 | |
| 114 | function getIncludeFields(fields: readonly DMMF.SchemaField[], dmmf: DMMFHelper) { |
| 115 | return fields.filter((field) => { |
no test coverage detected
searching dependent graphs…