UNPKG
cap-codepush-mod
Version:
beta (1.0.0-beta.3)
latest (1.0.0-beta.1)
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
CodePush Plugin for Capacitor
github.com/mraghuram3/capacitor-codepush
cap-codepush-mod
/
typings
/
replace.d.ts
13 lines
(11 loc)
•
228 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
interface
ReplaceOptions
{
regex
:
string
;
replacement
:
string
;
paths
:
Array
<
string
>;
recursive
:
boolean
;
silent
:
boolean
; }
declare
module
"replace"
{
function
replace
(
options
:
ReplaceOptions
):
void
;
export
= replace; }