Interface Indicator<Result, Input>

interface Indicator<Result, Input> {
    isStable: boolean;
    getResult(): Result;
    update(input): void | Result;
}

Type Parameters

  • Result = Big
  • Input = BigSource

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

isStable: boolean

Methods