UNPKG

@vendure/core

Version:

A modern, headless ecommerce framework

9 lines (8 loc) 267 B
import { ValueTransformer } from 'typeorm'; /** * Decimal types are returned as strings (e.g. "20.00") by some DBs, e.g. MySQL & Postgres */ export declare class DecimalTransformer implements ValueTransformer { to(value: any): any; from(value: any): any; }