mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-05-19 19:39:54 +08:00
13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
interface ReplaceOptions {
|
|
regex: string;
|
|
replacement: string;
|
|
paths: Array<string>;
|
|
recursive: boolean;
|
|
silent: boolean;
|
|
}
|
|
|
|
declare module "replace" {
|
|
function replace(options: ReplaceOptions): void;
|
|
|
|
export = replace;
|
|
} |