Type alias JSONPODCryptographicValue

JSONPODCryptographicValue: {
    cryptographic: number | string;
}

JSONPODValue type for cryptographic entries. These must always use an explicit typed object since a bare number is reserved for int values. The value within the typed object can be a number if it is in the safe range between Number.MIN_SAFE_INTEGER and Number.MAX_SAFE_INTEGER where no accuracy is lost. Otherwise any string encoding accepted by BigInt(s) is acceptable.

Type declaration

  • cryptographic: number | string

Generated using TypeDoc