AndreyProgr/estimate-js

View on GitHub
src/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IThreePointEstimate {
  readonly optimistic: number;
  readonly mostLikely: number;
  readonly pessimistic: number;
}

export interface IPERTEstimate {
  readonly estimate: number;
  readonly standartDeviation: number;
  readonly threePointEstimate: IThreePointEstimate;
}