UNPKG

dolphin-tool

Version:

🐬 dolphin-tool binaries and wrapper for Node.js.

18 lines (17 loc) 513 B
import { DolphinToolRunOptions } from './dolphinToolBin.js'; import { DigestAlgorithm } from './common.js'; export interface VerifyOptions extends DolphinToolRunOptions { inputFilename: string; userFolderPath?: string; digestAlgorithm?: DigestAlgorithm; } export interface VerifyDigests { crc32?: string; md5?: string; sha1?: string; rchash?: string; } declare const _default: { verify(options: VerifyOptions, attempt?: number): Promise<VerifyDigests>; }; export default _default;