index.d.ts 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /// <reference types="node"/>
  2. import {MergeExclusive, TypedArray} from 'type-fest';
  3. declare namespace tempy {
  4. type FileOptions = MergeExclusive<
  5. {
  6. /**
  7. File extension.
  8. Mutually exclusive with the `name` option.
  9. _You usually won't need this option. Specify it only when actually needed._
  10. */
  11. readonly extension?: string;
  12. },
  13. {
  14. /**
  15. Filename.
  16. Mutually exclusive with the `extension` option.
  17. _You usually won't need this option. Specify it only when actually needed._
  18. */
  19. readonly name?: string;
  20. }
  21. >;
  22. type DirectoryOptions = {
  23. /**
  24. _You usually won't need this option. Specify it only when actually needed._
  25. Directory prefix.
  26. Useful for testing by making it easier to identify cache directories that are created.
  27. */
  28. readonly prefix?: string;
  29. };
  30. }
  31. declare const tempy: {
  32. /**
  33. Get a temporary file path you can write to.
  34. @example
  35. ```
  36. import tempy = require('tempy');
  37. tempy.file();
  38. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/4f504b9edb5ba0e89451617bf9f971dd'
  39. tempy.file({extension: 'png'});
  40. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/a9fb0decd08179eb6cf4691568aa2018.png'
  41. tempy.file({name: 'unicorn.png'});
  42. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/f7f62bfd4e2a05f1589947647ed3f9ec/unicorn.png'
  43. tempy.directory();
  44. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/2f3d094aec2cb1b93bb0f4cffce5ebd6'
  45. ```
  46. */
  47. file: (options?: tempy.FileOptions) => string;
  48. /**
  49. Get a temporary directory path. The directory is created for you.
  50. @example
  51. ```
  52. import tempy = require('tempy');
  53. tempy.directory();
  54. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/2f3d094aec2cb1b93bb0f4cffce5ebd6'
  55. tempy.directory({prefix: 'a'});
  56. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/name_3c085674ad31223b9653c88f725d6b41'
  57. ```
  58. */
  59. directory: (options?: tempy.DirectoryOptions) => string;
  60. /**
  61. Write data to a random temp file.
  62. @example
  63. ```
  64. import tempy = require('tempy');
  65. await tempy.write('🦄');
  66. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/2f3d094aec2cb1b93bb0f4cffce5ebd6'
  67. ```
  68. */
  69. write: (fileContent: string | Buffer | TypedArray | DataView | NodeJS.ReadableStream, options?: tempy.FileOptions) => Promise<string>;
  70. /**
  71. Synchronously write data to a random temp file.
  72. @example
  73. ```
  74. import tempy = require('tempy');
  75. tempy.writeSync('🦄');
  76. //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/2f3d094aec2cb1b93bb0f4cffce5ebd6'
  77. ```
  78. */
  79. writeSync: (fileContent: string | Buffer | TypedArray | DataView, options?: tempy.FileOptions) => string;
  80. /**
  81. Get the root temporary directory path.
  82. For example: `/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T`.
  83. */
  84. readonly root: string;
  85. };
  86. export = tempy;