@openscript/unplugin-favicons
Version:
Generate favicons for your project with caching for blazing fast rebuilds.
13 lines • 502 B
TypeScript
import type { FaviconResponse } from "favicons";
/**
* @private
*
* Caches the provided `FaviconResponse` using the provided cache key.
*
* Note: Because `cacache` only allows for the serialization of strings and
* Buffers, we have to manually separate binary data from the rest of the
* response.
*/
declare const putCacheResponse: (cacheKey: string, response: FaviconResponse, label?: string) => Promise<void>;
export default putCacheResponse;
//# sourceMappingURL=put-cache-response.d.ts.map