Type guard for the Row Part.
import {Draw} from 'effect-tree'const part1 = Draw.text('hello')const part2 = Draw.row.top.left([part1])expect(Draw.isRow(part1), 'not a row').toBe(false)expect(Draw.isRow(part2), 'a row').toBe(true) Copy
import {Draw} from 'effect-tree'const part1 = Draw.text('hello')const part2 = Draw.row.top.left([part1])expect(Draw.isRow(part1), 'not a row').toBe(false)expect(Draw.isRow(part2), 'a row').toBe(true)
Type guard for the Row Part.