UNPKG
string-to-stream
Version:
latest (3.0.1)
3.0.1
3.0.0
2.0.0
1.1.1
1.1.0
1.0.1
1.0.0
Convert a string into a stream (streams2)
github.com/feross/string-to-stream
feross/string-to-stream
string-to-stream
/
index.d.ts
5 lines
(4 loc)
•
149 B
TypeScript
View Raw
1
2
3
4
5
declare
module
'string-to-stream'
{
const
stringToStream
:
(
data
:
string
,
encoding
?:
string
) =>
NodeJS
.
ReadableStream
;
export
= stringToStream; }