UNPKG
stromjs
Version:
latest (0.5.5)
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
Dependency-free streams utils for Node.js
github.com/lewisdiamond/stromjs
lewisdiamond/stromjs
stromjs
/
dist
/
functions
/
replace.d.ts
5 lines
(4 loc)
•
237 B
TypeScript
View Raw
1
2
3
4
5
/// <reference types="node" />
import
{
Transform
}
from
"stream"
;
import
{
WithEncoding
}
from
"./baseDefinitions"
;
export
declare
function
replace
(
searchValue
:
string
|
RegExp
,
replaceValue
:
string
,
options
?:
WithEncoding
):
Transform
;