UNPKG

353 BTypeScriptView Raw
1export declare enum IntentType {
2 /**
3 * Simple intent (function) to fetch data (get/post/put) from
4 * You can store data within the intent 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 IntentType;