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) 347 B
import { KeyPackage } from "./keyPackage.js"; import { LeafNode } from "./leafNode.js"; export interface KeyPackageEqualityConfig { compareKeyPackages(a: KeyPackage, b: KeyPackage): boolean; compareKeyPackageToLeafNode(a: KeyPackage, b: LeafNode): boolean; } export declare const defaultKeyPackageEqualityConfig: KeyPackageEqualityConfig;