UNPKG

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