cordova-plugin-code-push/typings/replace.d.ts

13 строки
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;
}