index.d.ts 543 B

1234567891011121314
  1. import * as posix from './posix.js';
  2. import * as win32 from './win32.js';
  3. export * from './options.js';
  4. export { win32, posix };
  5. /**
  6. * Determine whether a path is executable on the current platform.
  7. */
  8. export declare const isexe: (path: string, options?: import("./options.js").IsexeOptions) => Promise<boolean>;
  9. /**
  10. * Synchronously determine whether a path is executable on the
  11. * current platform.
  12. */
  13. export declare const sync: (path: string, options?: import("./options.js").IsexeOptions) => boolean;
  14. //# sourceMappingURL=index.d.ts.map