UNPKG

rollup-plugin-executable

Version:

The Rollup Executable Plugin changes output javascript file's executable state to ON on unix like operating systems.

6 lines 372 B
import { Plugin } from "rollup"; declare type RequiredParts<T, Keys extends keyof T = keyof T> = Pick<T, Exclude<keyof T, Keys>> & Required<Pick<T, Extract<keyof T, Keys>>>; export declare type ExecutablePlugin = RequiredParts<Plugin, "generateBundle" | "writeBundle">; export default function executable(): ExecutablePlugin; export {}; //# sourceMappingURL=index.d.ts.map