ahmedgaafer/JS-Data-Structures

View on GitHub
src/types/utility.types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type CMP<T> = (a: T, b: T) => boolean;

export type HeapOptions<T> = {
    cmp?: CMP<T>;
};