Interface IAlgorithm

Structure that describes algorithm

interface IAlgorithm {
    name: string | number;
    params: null | Buffer | IParams;
}

Properties

Properties

name: string | number

The algorithm name

params: null | Buffer | IParams

The algorithm parameters

Generated using TypeDoc