5 lines
128 B
TypeScript
5 lines
128 B
TypeScript
|
export declare class Hashes {
|
||
|
static fileHash(path: string): Promise<string>;
|
||
|
static stringHash(str: string): string;
|
||
|
}
|