Skip to content

Commit

Permalink
docs: jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsogl committed Jul 25, 2018
1 parent 07ed420 commit 5e250aa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/providers/image-loader-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ export class ImageLoaderConfig {

/**
* Set the maximum number of allowed connections at the same time.
* @param concurrency
* @param {number} concurrency
*/
setConcurrency(concurrency): void {
setConcurrency(concurrency: number): void {
this.concurrency = concurrency;
}

Expand Down Expand Up @@ -174,23 +174,23 @@ export class ImageLoaderConfig {

/**
* Set the default spinner name
* @param name
* @param {string} name
*/
setSpinnerName(name): void {
setSpinnerName(name: string): void {
this.spinnerName = name;
}

/**
* Set the default spinner color
* @param color
* @param {string} color
*/
setSpinnerColor(color): void {
setSpinnerColor(color: string): void {
this.spinnerColor = color;
}

/**
* Set headers options for the HttpClient transfers.
* @param headers
* @param {HttpHeaders} headers
*/
setHttpHeaders(headers: HttpHeaders): void {
this.httpHeaders = headers;
Expand Down

0 comments on commit 5e250aa

Please sign in to comment.