UNPKG

knip

Version:

Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects

12 lines (11 loc) 258 B
type EntryDescription = Record<string, unknown>; type Entry = Record<string, string | string[] | (EntryDescription & { html?: boolean; })>; export type RsbuildConfig = { plugins?: unknown[]; source?: { entry?: Entry; }; }; export {};