UNPKG

concordance-comparator

Version:

- `npm install` - install dependencies - `npm test` - run tests - `npm run compile` - compile your code into the `lib/` folder

7 lines (6 loc) 155 B
export interface Comparable<T> { toString(): String; serialize(): T; deserialize?(value: T): void; compare(other: Comparable<T>): boolean; }