UNPKG

@janiscommerce/app-tracking-time

Version:

A package for managing the times of actions in applications

16 lines (13 loc) 338 B
import Realm from "realm"; class EventSchema extends Realm.Object{ static schema = { name: 'event', properties: { id: {type:'string', indexed: true}, time: {type: 'date'}, type: {type: 'string'}, payload: {type: 'string'} } } } export default EventSchema;