UNPKG

@medusajs/utils

Version:

Medusa utilities functions shared by Medusa core and Modules

12 lines 366 B
import { BaseProperty } from "./base"; /** * The NumberProperty is used to define a numeric/integer * property */ export declare class BigNumberProperty extends BaseProperty<number> { protected dataType: { readonly name: "bigNumber"; }; static isBigNumberProperty(obj: any): obj is BigNumberProperty; } //# sourceMappingURL=big-number.d.ts.map