DecimalOptions
@tsed/objection
Usage
typescript
import { DecimalOptions } from "@tsed/objection";
See /packages/orm/objection/src/types/decorators/decimal.ts.
Overview
ts
interface DecimalOptions {
precision?: number | null;
scale?: number;
}
precision
ts
precision?: number | null;
scale
ts
scale?: number;