fix: add missing documentation for indent option

This commit is contained in:
Johann Schopplich
2025-10-22 22:35:03 +02:00
parent 19cdd57d43
commit cd62037a21

View File

@@ -10,6 +10,10 @@ export type JsonValue = JsonPrimitive | JsonObject | JsonArray
// #region Encoder options
export interface EncodeOptions {
/**
* Number of spaces per indentation level.
* @default 2
*/
indent?: number
/**
* Delimiter to use for tabular array rows and inline primitive arrays.