Package-level declarations

Types

Link copied to clipboard
expect class BigDecimal(value: String)

The arbitrary-precision decimal a PostgreSQL numeric column carries, in a form commonMain can name.

actual class BigDecimal(val value: String)

On JS, BigDecimal holds the decimal's text.

actual typealias BigDecimal = java.math.BigDecimal

On the JVM, BigDecimal is java.math.BigDecimal - the same class the driver's numeric codec produces, so nothing is wrapped and nothing is converted.