File: index.d.ts

package info (click to toggle)
node-stream-shift 1.0.1%2B~1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 116 kB
  • sloc: javascript: 51; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 352 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
// Type definitions for stream-shift 1.0
// Project: https://github.com/mafintosh/stream-shift
// Definitions by: Daniel Cassidy <https://github.com/djcsdy>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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

declare function shift(stream: NodeJS.ReadableStream): Buffer | string | null;

export = shift;