20 lines
296 B
TypeScript
20 lines
296 B
TypeScript
// @pushrocks scope
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
|
|
export {
|
|
smartpromise
|
|
}
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export {
|
|
tsclass
|
|
}
|
|
|
|
// third party scope
|
|
import leven from 'leven';
|
|
import fuseJs from 'fuse.js';
|
|
|
|
export { leven, fuseJs };
|