prompt.d.ts 332 B

123456789101112
  1. // Type definitions for sort-package-json v1.7.1
  2. // https://github.com/keithamus/sort-package-json
  3. // Definitions by: Steven Silvester <https://github.com/blink1073>
  4. declare module 'prompt' {
  5. export function start(): void;
  6. export function get(
  7. items: string[],
  8. callback: (err: Error, result: any) => void
  9. ): void;
  10. }