2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-24 01:22:04 +00:00
iconify/packages/core/src/interfaces/cache.ts

12 lines
257 B
TypeScript
Raw Normal View History

2020-12-25 19:03:15 +00:00
import type { IconifyJSON } from '@iconify/types';
2020-04-28 09:47:35 +00:00
/**
* Function to cache loaded icons set
*/
export type CacheIcons = (provider: string, data: IconifyJSON) => void;
2020-04-28 09:47:35 +00:00
/**
* Function to load icons from cache
*/
export type LoadIconsCache = () => void;