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