UNPKG

@typed/content-hash

Version:

Content hash a directory of HTML/JS/CSS files and other static assets

9 lines 394 B
import { HashPlugin } from '../HashPlugin'; export declare type NonNullableKeys<A, Keys extends keyof A> = Readonly<Omit<A, Keys>> & { readonly [K in Keys]-?: NonNullable<A[K]>; }; export declare type CssPluginOptions = { readonly mainFields?: readonly string[]; }; export declare function createCssPlugin({ mainFields }: CssPluginOptions): HashPlugin; //# sourceMappingURL=css.d.ts.map