get-asset-hash.d.ts 208 B

12345678
  1. import type { Asset } from 'webpack';
  2. /**
  3. * @param {Asset} asset
  4. * @return {string} The MD5 hash of the asset's source.
  5. *
  6. * @private
  7. */
  8. export declare function getAssetHash(asset: Asset): string | null;