UNPKG

cordova-plugin-qonversion

Version:
16 lines (12 loc) 248 B
import {AutomationsEventType} from "./enums"; export class AutomationsEvent { type: AutomationsEventType; date: number; constructor( type: AutomationsEventType, date: number, ) { this.type = type; this.date = date; } }