UNPKG

leaf-orient

Version:

OrientDB ODM with support for schemas inspired by mongoose

19 lines (15 loc) 252 B
import Type from './type'; export default class MixedType extends Type { _serialize(value) { return value; } _deserialize(value) { return value; } static toString() { return 'Mixed'; } static getDbType(options) { return void 0; } }