UNPKG

534 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var IntentType;
4(function (IntentType) {
5 /**
6 * Simple intent (function) to fetch data (get/post/put) from
7 * You can store data within the intent itself or query external APIs
8 */
9 IntentType["FetchData"] = "FetchData";
10 /**
11 * Lets you store data easily data to the Bearer database
12 */
13 IntentType["SaveState"] = "SaveState";
14})(IntentType = exports.IntentType || (exports.IntentType = {}));
15exports.default = IntentType;