UNPKG

@typed/content-hash

Version:

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

10 lines 306 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; } //# sourceMappingURL=model.d.ts.map