mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 06:50:19 +00:00
add string-replace-webpack-plugin types
This commit is contained in:
+47
@@ -0,0 +1,47 @@
|
||||
// Type definitions for string-replace-webpack-plugin 0.1.3
|
||||
// Project: https://github.com/jamesandersen/string-replace-webpack-plugin
|
||||
// Definitions by: Rongjian Zhang <https://github.com/pd4d10>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
import { Plugin, RuleSetUse } from 'webpack';
|
||||
|
||||
export = StringReplacePlugin;
|
||||
|
||||
declare class StringReplacePlugin extends Plugin {
|
||||
static replace(
|
||||
options: StringReplacePlugin.Options,
|
||||
/**
|
||||
* loaders to follow the replacement
|
||||
*/
|
||||
nextLoaders?: string
|
||||
): RuleSetUse;
|
||||
static replace(
|
||||
/**
|
||||
* loaders to apply prior to the replacement
|
||||
*/
|
||||
prevLoaders: string,
|
||||
options: StringReplacePlugin.Options,
|
||||
/**
|
||||
* loaders to follow the replacement
|
||||
*/
|
||||
nextLoaders?: string
|
||||
): RuleSetUse;
|
||||
}
|
||||
|
||||
declare namespace StringReplacePlugin {
|
||||
interface Options {
|
||||
replacements: ReplacementItem[];
|
||||
}
|
||||
|
||||
interface ReplacementItem {
|
||||
/**
|
||||
* a regex to match against the file contents
|
||||
*/
|
||||
pattern: RegExp;
|
||||
/**
|
||||
* an ECMAScript string replacement function
|
||||
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace#Specifying_a_function_as_a_parameter
|
||||
*/
|
||||
replacement: (substring: string, ...args: any[]) => string;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": ["es6"],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": false,
|
||||
"strictFunctionTypes": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": ["../"],
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": ["index.d.ts", "string-replace-webpack-plugin-tests.ts"]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{ "extends": "dtslint/dt.json" }
|
||||
Reference in New Issue
Block a user