UNPKG

@typed/content-hash

Version:

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

8 lines 336 B
import { Env } from '@typed/fp/Env'; import { Option } from 'fp-ts/Option'; import { LoggerEnv } from '../application/services/logging'; import { Document } from '../domain/model'; export interface HashPlugin { readonly readFilePath: (filePath: string) => Env<LoggerEnv, Option<Document>>; } //# sourceMappingURL=HashPlugin.d.ts.map