@ng-doc/builder
Version:
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>
10 lines (9 loc) • 524 B
TypeScript
import { NgDocCachedData } from '../interfaces';
/**
* Creates cache for given files, returns object with file path as key and md5 hash as value
* @param version - version of the current package
* @param files - list of files, for which cache should be created
* @param data - properties, which should be cached
* @param result - result of the builder, which should be cached
*/
export declare function createCache(version?: string, files?: string[], data?: Record<string, unknown>, result?: string): NgDocCachedData;