2016-09-20 15:56:49 +00:00
|
|
|
import 'typings-global'
|
2015-12-03 19:48:32 +00:00
|
|
|
|
2016-09-20 15:56:49 +00:00
|
|
|
import * as plugins from './smartfile.plugins'
|
|
|
|
import * as SmartfileFs from './smartfile.fs'
|
|
|
|
import * as SmartfileInterpreter from './smartfile.interpreter'
|
|
|
|
import * as SmartfileMemory from './smartfile.memory'
|
|
|
|
import * as SmartfileRemote from './smartfile.remote'
|
2015-12-03 19:48:32 +00:00
|
|
|
|
2016-09-20 15:56:49 +00:00
|
|
|
export {Smartfile} from './smartfile.classes.smartfile'
|
2015-11-24 17:52:24 +00:00
|
|
|
|
2016-09-20 15:56:49 +00:00
|
|
|
export let fs = SmartfileFs
|
|
|
|
export let interpreter = SmartfileInterpreter
|
|
|
|
export let memory = SmartfileMemory
|
|
|
|
export let remote = SmartfileRemote
|
|
|
|
export let requireReload = SmartfileFs.requireReload
|