(doc: Domain.Doc)
| 115 | } |
| 116 | |
| 117 | const shouldIgnore = (doc: Domain.Doc): boolean => { |
| 118 | return Record.has(doc.tags, "internal") || Record.has(doc.tags, "ignore") |
| 119 | } |
| 120 | |
| 121 | const parseInterfaceDeclaration = (id: ast.InterfaceDeclaration) => |
| 122 | Effect.gen(function*() { |
no test coverage detected