UNPKG

modrinthjs

Version:
14 lines (13 loc) 270 B
/** * A list of hashes and the algorithm used to create them */ export type HashList = { hashes: Array<string>; algorithm: HashList.algorithm; }; export declare namespace HashList { enum algorithm { SHA1 = "sha1", SHA512 = "sha512" } }