(name: string, types: ReadonlyArray<string>)
| 17 | } |
| 18 | |
| 19 | const prettyDeclaration = (name: string, types: ReadonlyArray<string>): Doc.Doc<never> => |
| 20 | Doc.catWithSpace(Doc.text(name), prettyTypes(types)) |
| 21 | |
| 22 | const doc: Doc.Doc<never> = prettyDeclaration("example", ["Int", "Bool", "Char", "IO ()"]) |
| 23 |
no test coverage detected