UNPKG

ts-mls

Version:

[![CI](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml/badge.svg)](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml) [![npm version](https://badge.fury.io/js/ts-mls.svg)](https://badge.fury.io/js/ts-mls) [![Coverage Status](https://co

8 lines (7 loc) 343 B
import { Credential } from "./credential.js"; export interface AuthenticationService { validateCredential(credential: Credential, signaturePublicKey: Uint8Array): Promise<boolean>; } export declare const defaultAuthenticationService: { validateCredential(_credential: Credential, _signaturePublicKey: Uint8Array): Promise<boolean>; };