UNPKG

499 BJavaScriptView Raw
1'use strict';
2
3const Cache = require('./lib/Cache');
4
5const CacheFlow = require('./lib/CacheFlow');
6const Intent = require('./lib/Intent');
7
8const SavedToCache = require('./lib/SavedToCache');
9const RestoredFromCache = require('./lib/RestoredFromCache');
10
11module.exports = Cache;
12
13module.exports.Cache = Cache;
14module.exports.CacheFlow = CacheFlow;
15module.exports.Intent = Intent;
16
17module.exports.SavedToCache = SavedToCache;
18module.exports.RestoredFromCache = RestoredFromCache;
\No newline at end of file