Socket
Socket
Sign inDemoInstall

@types/temp

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/temp

TypeScript definitions for temp


Version published
Weekly downloads
104K
decreased by-20.45%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/temp

Summary

This package contains type definitions for temp (https://github.com/bruce/node-temp).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/temp.

index.d.ts

// Type definitions for temp 0.9
// Project: https://github.com/bruce/node-temp
// Definitions by: Daniel Rosenwasser <https://github.com/DanielRosenwasser>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />

import * as fs from "fs";

declare namespace temp {
  interface OpenFile {
    path: string;
    fd: number;
  }

  interface Stats {
    files: number;
    dirs: number;
  }

  interface AffixOptions {
    prefix?: string | undefined;
    suffix?: string | undefined;
    dir?: string | undefined;
  }

  let dir: string;

  function track(value?: boolean): typeof temp;

  function mkdir(affixes: string | AffixOptions | undefined, callback: (err: any, dirPath: string) => void): void;
  function mkdir(affixes?: string | AffixOptions): Promise<string>;

  function mkdirSync(affixes?: string | AffixOptions): string;

  function open(affixes: string | AffixOptions | undefined, callback: (err: any, result: OpenFile) => void): void;
  function open(affixes?: string | AffixOptions): Promise<OpenFile>;

  function openSync(affixes?: string | AffixOptions): OpenFile;

  function path(affixes?: string | AffixOptions, defaultPrefix?: string): string;

  function cleanup(callback: (err: any, result: Stats) => void): void;
  function cleanup(): Promise<Stats>;

  function cleanupSync(): boolean | Stats;

  function createWriteStream(affixes?: string | AffixOptions): fs.WriteStream;
}

export = temp;

Additional Details

  • Last updated: Fri, 02 Jul 2021 21:32:14 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Daniel Rosenwasser.

FAQs

Package last updated on 02 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc