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

Commit

Permalink
feat(bin): Expose ng2-file-upload directives to use it without needin…
Browse files Browse the repository at this point in the history
…g ng2-file-upload module
  • Loading branch information
jboulay committed Sep 15, 2016
1 parent a338217 commit 00d1444
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/cloudinary.module.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {FileDropDirective, FileSelectDirective} from 'ng2-file-upload';
import {CloudinaryImageComponent} from './cloudinary-image.component';

export {CloudinaryOptions} from './cloudinary-options.class';
export {CloudinaryUploader} from './cloudinary-uploader.service';

@NgModule({
declarations: [
CloudinaryImageComponent
CloudinaryImageComponent,
FileDropDirective,
FileSelectDirective
],
imports: [CommonModule],
exports: [
CloudinaryImageComponent
CloudinaryImageComponent,
FileDropDirective,
FileSelectDirective
]
})
export class Ng2CloudinaryModule {}

0 comments on commit 00d1444

Please sign in to comment.