UNPKG

353 BTypeScriptView Raw
1export declare enum FunctionType {
2 /**
3 * Simple func (function) to fetch data (get/post/put) from
4 * You can store data within the func itself or query external APIs
5 */
6 FetchData = "FetchData",
7 /**
8 * Lets you store data easily data to the Bearer database
9 */
10 SaveState = "SaveState"
11}
12export default FunctionType;