UNPKG

okam-core

Version:

The extension for small program framework

32 lines (25 loc) 411 B
/** * @file The framework base * @author sparklewhy@gmail.com */ 'use strict'; import * as na from '../na/index'; import request from '../na/request'; export default { /** * The native env * * @type {Object} */ $na: na, /** * The native API */ $api: na.api, /** * The http request object * * @type {Object} */ $http: request };