Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Max Mecklin / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • code
  • moya-angular-common
  • src
  • index.ts
  • Tuukka Kivilahti's avatar
    upgrade and bug fix caused by bug in ng cli · 29ceaba7
    Tuukka Kivilahti committed Feb 10, 2018
    29ceaba7 Browse Files
index.ts 322 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import {MoyaRestModule} from './moya-rest/moya-rest.module';
import {NgModule} from "@angular/core";


export * from './moya-rest';

const MODULES = [
    MoyaRestModule
];

@NgModule({
    imports: [MoyaRestModule.forRoot()],
    exports: MODULES
})

@NgModule({exports: MODULES})
export class MoyaAngularCommonModule {
}