cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
12 lines (11 loc) • 367 B
TypeScript
import { UserPropertyKey } from "./enums";
export declare class UserProperty {
key: string;
value: string;
/**
* {@link UserPropertyKey} used to set this property.
* Returns {@link UserPropertyKey.CUSTOM} for custom properties.
*/
definedKey: UserPropertyKey;
constructor(key: string, value: string, definedKey: UserPropertyKey);
}