1.0.4 • Published 6 months ago

@types/streamify-string v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/streamify-string

Summary

This package contains type definitions for streamify-string (https://github.com/chrisallenlane/streamify-string).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/streamify-string.

index.d.ts

// Type definitions for streamify-string 1.0
// Project: https://github.com/chrisallenlane/streamify-string
// Definitions by: Jesse Wright <https://github.com/jeswr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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

import { Readable } from 'stream';

// tslint:disable-next-line:no-empty-interface
interface Streamify extends Readable {}
interface StreamifyConstructor {
  new (str: string, options?: any): Streamify;
  (str: string, options?: any): Streamify;
}

/**
 * Converts a string into a Node readable stream.
 */
declare const Streamify: StreamifyConstructor;

export = Streamify;

Additional Details

  • Last updated: Mon, 29 Nov 2021 20:01:02 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Jesse Wright.

1.0.2

7 months ago

1.0.1

8 months ago

1.0.4

6 months ago

1.0.3

7 months ago

1.0.0

2 years ago