valor-software/ng2-bootstrap

View on GitHub
scripts/docs/api-doc-test-cases/services-with-properties.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {Injectable} from '@angular/core';

/**
 * Service defining default values for progress bars
 */
@Injectable()
export class ProgressbarConfig {

  /**
   * Maximal value to be displayed in the progressbar.
   */
  max = 100;

  /**
   * Voluntarily left without a default value.
   */
  foo: string;

  private _dontExtract;

  /**
   * @internal
   */
  notForDocumentation;
}