[ADF-3820] Added Library dialog component docs (#4061)

This commit is contained in:
Andy Stark
2018-12-12 12:07:26 +00:00
committed by Eugenio Romano
parent 95260a7ca7
commit 0b1cfcf8fe
9 changed files with 69 additions and 7 deletions

View File

@@ -44,9 +44,14 @@ import { debounceTime, mergeMap, takeUntil } from 'rxjs/operators';
host: { class: 'adf-library-dialog' }
})
export class LibraryDialogComponent implements OnInit, OnDestroy {
/** Emitted when an error occurs. */
@Output()
error: EventEmitter<any> = new EventEmitter<any>();
/** Emitted when the new library is created successfully. The
* event parameter is a SiteEntry object with the details of the
* newly-created library.
*/
@Output()
success: EventEmitter<any> = new EventEmitter<any>();