0.2.4 • Published 7 months ago

@types/smb2 v0.2.4

Weekly downloads
59
License
MIT
Repository
github
Last release
7 months ago

Installation

npm install --save @types/smb2

Summary

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

Details

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

index.d.ts

// Type definitions for smb2 0.2
// Project: https://github.com/bchelli/node-smb2
// Definitions by: Nick Whitlock <https://github.com/eezstreet>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

export = SMB2;

interface SMB2Options {
    share: string;

    domain: string;

    username: string;

    password: string;

    port?: number | undefined;

    packetConcurrency?: number | undefined;

    autoCloseTimeout?: number | undefined;
}

interface SMB2ReadFileOptions {
    encoding: string | null;
}

declare class SMB2 {
    constructor(options: SMB2Options);

    close(): void;

    exists(path: string, callback?: (error: unknown, exists: boolean) => void): void;

    rename(oldPath: string, newPath: string, callback?: (error: unknown) => void): void;

    readFile(fileName: string, options?: SMB2ReadFileOptions, callback?: (error: unknown, data: string) => void): void;

    readFile(fileName: string, callback?: (error: unknown, data: string) => void): void;

    writeFile(fileName: string, data: string, options?: SMB2ReadFileOptions, callback?: (error: unknown) => void): void;

    writeFile(fileName: string, data: string, callback?: (error: unknown) => void): void;

    unlink(fileName: string, callback?: (error: unknown) => void): void;

    readdir(dir: string, callback?: (error: unknown, files: string[]) => void): void;

    rmdir(dir: string, callback?: (error: unknown) => void): void;

    mkdir(dir: string, mode: string, callback?: (error: unknown) => void): void;

    mkdir(dir: string, callback?: (error: unknown) => void): void;
}

Additional Details

  • Last updated: Fri, 09 Jul 2021 02:32:43 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Nick Whitlock.

0.2.3

7 months ago

0.2.4

7 months ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

4 years ago