UNPKG

@medusajs/utils

Version:

Medusa utilities functions shared by Medusa core and Modules

11 lines 315 B
import { BaseProperty } from "./base"; /** * The JSONProperty is used to define a property that stores * data as a JSON string */ export declare class JSONProperty extends BaseProperty<Record<string, unknown>> { protected dataType: { readonly name: "json"; }; } //# sourceMappingURL=json.d.ts.map