Files
lancedb/docs/src/javascript/enums/WriteMode.md
Leon Yee 9600a38ff0 [docs] fixed javascript docs for overloaded functions (#247)
Solves #244 :


![image](https://github.com/lancedb/lancedb/assets/43097991/d1fd9d2a-0d6a-4c16-a0ab-f460cc709349)

Problem was function overloading in the interface caused some weird
`typedoc` formatting, so breaking it apart into methods fixed the issue.

Also regenerated and updated javascript docs

---------

Co-authored-by: Tevin Wang <tevin@cmu.edu>
2023-07-04 13:07:34 -07:00

908 B

vectordb / Exports / WriteMode

Enumeration: WriteMode

Write mode for writing a table.

Table of contents

Enumeration Members

Enumeration Members

Append

Append = "append"

Append new data to the table.

Defined in

index.ts:466


Create

Create = "create"

Create a new Table.

Defined in

index.ts:462


Overwrite

Overwrite = "overwrite"

Overwrite the existing Table if presented.

Defined in

index.ts:464