UNPKG

knip

Version:

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

10 lines (9 loc) 253 B
export type PM2Application = { script?: string; }; type PM2Applications = PM2Application | PM2Application[]; type PM2RootConfig = PM2Application & { apps?: PM2Applications; }; export type PM2Config = PM2RootConfig | PM2Application[]; export {};