UNPKG

246 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}
8export default FunctionType;