UNPKG

knip

Version:

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

16 lines (15 loc) 319 B
export type GatsbyConfig = { plugins: (string | { resolve: string; })[]; }; export type GatsbyActions = { actions: { setBabelPlugin: ({ name }: { name: string; }) => void; }; }; export type GatsbyNode = { onCreateBabelConfig: (options: GatsbyActions) => void; };