mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-05 03:12:57 +00:00
* Sets `"useCodeBlocks": true` * Adds a post-processing script `nodejs/typedoc_post_process.js` that puts the parameter description on the same line as the parameter name, like it is in our Python docs. This makes the text hierarchy clearer in those sections and also makes the sections shorter.
526 B
526 B
@lancedb/lancedb • Docs
@lancedb/lancedb / TableNamesOptions
Interface: TableNamesOptions
Properties
limit?
optional limit: number;
An optional limit to the number of results to return.
startAfter?
optional startAfter: string;
If present, only return names that come lexicographically after the supplied value.
This can be combined with limit to implement pagination by setting this to the last table name from the previous page.