mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
import { compare, hash, hash_from_file } from 'ssdeep';
|
|
|
|
let str = 'string';
|
|
let num = 123;
|
|
|
|
num = compare(str, str);
|
|
str = hash(str);
|
|
str = hash_from_file(str);
|