@types/cookie-signature
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Installation

npm install --save @types/cookie-signature

Summary

This package contains type definitions for cookie-signature (https://github.com/tj/node-cookie-signature).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cookie-signature.

index.d.ts

/// <reference types="node" />

import type { CipherKey } from "node:crypto";

/** Sign the given `val` with `secret`. */
export function sign(value: string, secret: CipherKey): string;

/**
 * Unsign and decode the given `val` with `secret`,
 * returning `false` if the signature is invalid.
 */
export function unsign(value: string, secret: CipherKey): string | false;

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Junyoung Choi.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/cookie-signature

Weekly Downloads

103,076

Version

1.1.2

License

MIT

Unpacked Size

3.42 kB

Total Files

5

Last publish

Collaborators

  • types