Base interface used in ChecksumArgs for each piece of data that can be included or not in the hash computed by the checksum method.

interface IncludableSpec {
    include?: boolean;
}

Hierarchy

Properties

Properties

include?: boolean

Whether to include this piece of data in the hash. It is true by default (if an object is passed).

Generated using TypeDoc