UNPKG

@typed/content-hash

Version:

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

11 lines (8 loc) 268 B
import { Document } from '../domain/model' /** * A map of file-paths to the corresponding Document */ export interface DocumentRegistry extends ReadonlyMap<string, Document> {} export interface DocumentRegistryEnv { readonly documentRegistry: DocumentRegistry }