import { Plugin } from '@kokojs/shared'; import { buildDll } from './build'; import { generateCacheKey } from './cache'; export declare type DllConfig = { name: string; include: string[]; cacheKey?: string; prodCache?: boolean; }; export declare type PluginOptions = DllConfig | DllConfig[]; export declare const KokoPluginDll: Plugin; export default KokoPluginDll; export { buildDll, generateCacheKey };