@openscript/unplugin-favicons
Version:
Generate favicons for your project with caching for blazing fast rebuilds.
13 lines • 519 B
TypeScript
import type { FaviconResponse } from "favicons";
/**
* @private
*
* Provided an iconType and source asset path, returns a cached FaviconResponse
* object if one exists.
*
* Note: Because `cacache` only allows for the serialization of strings and
* Buffers, we have to manually merge binary data into a single response.
*/
declare const getCacheResponse: (cacheKey: string, label?: string) => Promise<FaviconResponse | undefined>;
export default getCacheResponse;
//# sourceMappingURL=get-cache-response.d.ts.map