UNPKG

webpack-assets-manifest

Version:

This Webpack plugin will generate a JSON file that matches the original filename with the hashed version.

5 lines (4 loc) 315 B
import type { KeyValuePair, UnknownRecord } from './types.js'; export declare function isObject<T extends object = UnknownRecord>(input: unknown): input is T; export declare function isKeyValuePair(input: unknown): input is KeyValuePair; export declare function isPropertyKey(input: unknown): input is PropertyKey;