UNPKG

@scayle/storefront-core

Version:

Collection of essential utilities to work with the Storefront API

12 lines (11 loc) 303 B
import type { ValuesType } from 'utility-types'; /** * Available hash algorithms. */ export declare const HashAlgorithm: { /** @deprecated */ readonly MD5: "md5"; readonly SHA256: "sha256"; readonly NONE: "none"; }; export type HashAlgorithm = ValuesType<typeof HashAlgorithm> | null;