semantic-network
Version:
A utility library for manipulating a list of links that form a semantic interface to a network of resources.
12 lines (11 loc) • 470 B
TypeScript
import { Comparator } from '../../interfaces/comparator';
import { ComparableRepresentation } from '../../interfaces/comparableRepresentation';
/**
* A default set of comparisons made to check if two resource
* representation refer to the same resource in a collection.
*
* The most specific and robust equality check is first, with the most vague and
* optimistic last.
*
*/
export declare const defaultEqualityOperators: Comparator<ComparableRepresentation>[];