UNPKG

@transmute/jose-ld

Version:
8 lines (7 loc) 280 B
import { Verifier, JWA_ALG } from '../types'; export declare const createVerifier: (verifier: Verifier, type: JWA_ALG, options?: any) => { verify: ({ data, signature, }: { data?: Uint8Array | undefined; signature: string; }) => Promise<boolean>; };