UNPKG

vegan-ipsum

Version:

Generates passages of vegan-themed placeholder text suitable for use in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.

11 lines (10 loc) 267 B
/** * Mocks the execution of a shell command. * * @param {string} command - The shell command to mock. * @returns {any} The mocked result of the command execution. */ declare module "nock-exec" { function nockExec(command: string): any; export = nockExec; }