@types/jwt-encode
Version:
TypeScript definitions for jwt-encode
32 lines (23 loc) • 836 B
Markdown
# Installation
> `npm install --save @types/jwt-encode`
# Summary
This package contains type definitions for jwt-encode (https://www.npmjs.com/package/jwt-encode).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jwt-encode.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jwt-encode/index.d.ts)
````ts
interface BaseOptions {
alg: "HS256";
typ: "JWT";
}
type Options = Partial<BaseOptions> & {
[key: string]: string;
};
declare function sign(data: unknown, secret: string, options?: Options): string;
export = sign;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 03:09:37 GMT
* Dependencies: none
# Credits
These definitions were written by [Shakirov Kirill](https://github.com/turisap).