(model: Domain.DocEntry, options: {
readonly indentation?: number | undefined
readonly postfix?: string | undefined
})
| 165 | } |
| 166 | |
| 167 | const printEntry = (model: Domain.DocEntry, options: { |
| 168 | readonly indentation?: number | undefined |
| 169 | readonly postfix?: string | undefined |
| 170 | }) => { |
| 171 | return printModel(model.name, model.doc, { |
| 172 | signature: model.signature, |
| 173 | position: model.position, |
| 174 | indentation: options.indentation, |
| 175 | postfix: options.postfix |
| 176 | }) |
| 177 | } |
| 178 | |
| 179 | const printStaticMethod = (model: Domain.DocEntry) => { |
| 180 | return printEntry(model, { |
no test coverage detected