UNPKG

cordova-plugin-qonversion

Version:
19 lines (18 loc) 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UserProperty = void 0; class UserProperty { key; value; /** * {@link UserPropertyKey} used to set this property. * Returns {@link UserPropertyKey.CUSTOM} for custom properties. */ definedKey; constructor(key, value, definedKey) { this.key = key; this.value = value; this.definedKey = definedKey; } } exports.UserProperty = UserProperty;