Barrel

A barrel is a way to rollup exports from several modules into a single convenient module. The barrel itself is a module file that re-exports selected exports of other modules.

export * from './auth-model';
export * as AuthActions from './auth.actions';
export * from './auth.module';
export * as AuthSelectors from './auth.selectors';