Skip to content
This repository has been archived by the owner on Dec 10, 2022. It is now read-only.

Commit

Permalink
feat(module): Add preset module
Browse files Browse the repository at this point in the history
Empty do far
  • Loading branch information
gund committed Dec 30, 2017
1 parent fe86aca commit bd6d638
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/preset/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './preset.module';
9 changes: 9 additions & 0 deletions src/preset/preset.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { NgModule } from '@angular/core';

@NgModule({
imports: [],
exports: [],
declarations: [],
providers: [],
})
export class PresetModule {}
2 changes: 1 addition & 1 deletion src/public_api.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { };
export * from './preset';

0 comments on commit bd6d638

Please sign in to comment.