ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
26 lines (20 loc) • 410 B
text/typescript
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;
}