UNPKG

fluro

Version:

Promise based HTTP Fluro client for the browser and node.js

83 lines (59 loc) 2.46 kB
var versionName = 'fluro 2.2.36'; console.log(versionName) //////////////////////////////////////////// //Import the date library import FluroDate from './api/fluro.date'; export { FluroDate as FluroDate }; //Import the Utils library import FluroUtils from './api/fluro.utils'; export { FluroUtils as FluroUtils }; //Import the Utils library import FluroVideo from './api/fluro.video'; export { FluroVideo as FluroVideo }; //////////////////////////////////////////// //Export the event dispatcher class import {EventDispatcher} from './api/fluro.utils'; export { EventDispatcher as EventDispatcher }; //////////////////////////////////////////// //Export the event dispatcher class import FilterService from './services/FilterService'; export { FilterService as FilterService }; //////////////////////////////////////////// //Export the event dispatcher class import FluroContentListService from './services/FluroContentListService'; export { FluroContentListService as FluroContentListService }; //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //////////////////////////////////////////// //Import the pieces we need import FluroCore from './api/fluro.core'; //Add Utils as a static property FluroCore.utils = FluroUtils; FluroCore.date = FluroDate; FluroCore.moment = FluroDate.moment; FluroCore.video = FluroVideo; //Export like this for now FluroCore.FilterService = FilterService; FluroCore.FluroDate = FluroDate; FluroCore.FluroUtils = FluroUtils; FluroCore.FluroContentListService = FluroContentListService; FluroCore.EventDispatcher = EventDispatcher; //////////////////////////////////////////// export default FluroCore;