interface ChancyInterface {
    max?: number;
    mean?: number;
    min?: number;
    skew?: number;
    stddev?: number;
    type?: string;
}

Properties

max?: number

The maximum possible result

mean?: number

Used for "normal" type chancy results to determine the mean

min?: number

The minimum possible result

skew?: number

Skew to use when using a "normal" or "normal_int" distribution

stddev?: number

Used for "normal" type chancy results to determine the stddev

type?: string

The type of result, can be "normal", "normal_int", "integer" or "random"