From dcba161895e831a1ef379d03433ec86a1e6f9063 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 18 May 2026 12:34:36 -0400 Subject: [PATCH] docs: Add RecordBatch class to rendered docs --- src/recordbatch.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/recordbatch.ts b/src/recordbatch.ts index f70c69f1..58d1ace9 100644 --- a/src/recordbatch.ts +++ b/src/recordbatch.ts @@ -46,7 +46,11 @@ export interface RecordBatch { [Symbol.isConcatSpreadable]: true; } -/** @ignore */ +/** + * A RecordBatch is a collection of equal-length columns conforming to a + * particular {@link Schema}. A {@link Table} is composed of one or more + * RecordBatches. + */ export class RecordBatch { /**