import * as NoteAccessors from './accessors'; import * as NoteConstants from './constants'; import * as NoteGenerators from './generators'; import * as NoteTypings from './typings'; import * as NoteUtils from './utils'; export * from './constants'; export * from './typings'; export { NoteAccessors, NoteGenerators, NoteUtils }; export default Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, NoteAccessors), NoteConstants), NoteGenerators), NoteTypings), NoteUtils);