-
-
Notifications
You must be signed in to change notification settings - Fork 97
Closed
Description
Welcome to the issues section if it's your first time!
Before creating an issue, please be sure to:
- Checkout to the latest version, including submodules
- Try to find an isolated way to reproduce the behavior
- Fill in all the blanks in the most specific way you can
Steps to reproduce
import type { Options } from "argon2";
export const options: Options = {
hashLength: 32,
saltLength: 16, // <--- Object literal may only specify known properties, and 'saltLength' does not exist in type 'Options'.ts(2353)
timeCost: 3,
parallelism: 2
};
Expected behaviour
The “saltLength” field must be present in the Options
type, as it was in version 0.31.2 (see the argon2.d.ts
file).
Actual behaviour
The “saltLength” field is not present in the Options type, see the argon2.d.cts
file in version 0.40.1.
Metadata
Metadata
Assignees
Labels
No labels