Files
memecoin-botV2/.pnpm-store/v10/files/d6/5fcf897de2c73231d1ba9ded92e1bc6d5ad29fc2303266c0bcd93f2ed7db83bbb4cef5f65515f1d3dade4c7d66738b3d9b3bc945ef39508d999fb5d4c60609

23 lines
669 B
Plaintext

/**
* Internal assertion helpers.
* @module
* @deprecated
*/
import {
abytes as ab,
aexists as ae,
anumber as an,
aoutput as ao,
type IHash as H,
} from './utils.ts';
/** @deprecated Use import from `noble/hashes/utils` module */
export const abytes: typeof ab = ab;
/** @deprecated Use import from `noble/hashes/utils` module */
export const aexists: typeof ae = ae;
/** @deprecated Use import from `noble/hashes/utils` module */
export const anumber: typeof an = an;
/** @deprecated Use import from `noble/hashes/utils` module */
export const aoutput: typeof ao = ao;
/** @deprecated Use import from `noble/hashes/utils` module */
export type Hash = H;