UNPKG

@datadayrepos/libsodium-wrapper

Version:

Typescript for accessing the libsodium.js for a small subset of functionalities.

6 lines (5 loc) 225 B
import type { JWKSKey } from './lib'; export declare function createSignedJwt(privateJwk: JWKSKey, header?: Record<string, any>, body?: Record<string, any>): Promise<{ error: string | null; result: string | null; }>;