UNPKG

cordova-plugin-qonversion

Version:
9 lines (8 loc) 388 B
import { ActionResultType } from "./enums"; import { QonversionError } from "./QonversionError"; export declare class ActionResult { type: ActionResultType; value: Map<String, String | undefined> | undefined; error: QonversionError | undefined; constructor(type: ActionResultType, value: Map<String, String | undefined> | undefined, error: QonversionError | undefined); }