f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/main/js/common/standard/Hashable.ts
-rw-r--r--
94
1export interface Hashable {
2  readonly hashKey: string;
3
4  equals(other: unknown): boolean;
5}