cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
20 lines (16 loc) • 463 B
text/typescript
import {ActionResultType} from "./enums";
import {QonversionError} from "./QonversionError";
export 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,
) {
this.type = type;
this.value = value;
this.error = error;
}
}