diff --git a/types/inputmask/index.d.ts b/types/inputmask/index.d.ts index 69dac0e82f..3f51fc2df4 100644 --- a/types/inputmask/index.d.ts +++ b/types/inputmask/index.d.ts @@ -716,7 +716,7 @@ declare global { /** * Return the default (empty) mask value. */ - inputmask(method: "getemptymask"): string; + inputmask(method: "getemptymask"): string; // tslint:disable-line:unified-signatures /** * The metadata of the actual mask provided in the mask definitions can be obtained by calling getmetadata. If * only a mask is provided the mask definition will be returned by the getmetadata. @@ -726,15 +726,15 @@ declare global { * Check whether the returned value is masked or not; currently only works reliably when using `jquery.val` fn * to retrieve the value */ - inputmask(method: "hasMaskedValue"): boolean; + inputmask(method: "hasMaskedValue"): boolean; // tslint:disable-line:unified-signatures /** * Verify whether the current value is complete or not. */ - inputmask(method: "isComplete"): boolean; + inputmask(method: "isComplete"): boolean; // tslint:disable-line:unified-signatures /** * Validate a given value against the mask. */ - inputmask(method: "isValid"): boolean; + inputmask(method: "isValid"): boolean; // tslint:disable-line:unified-signatures /** * Get an option on an existing inputmask. * @@ -765,7 +765,7 @@ declare global { /** * Gets the unmasked value. */ - inputmask(method: "unmaskedvalue"): string; + inputmask(method: "unmaskedvalue"): string; // tslint:disable-line:unified-signatures /** * Creates a new Inputmask instance. * diff --git a/types/inputmask/tslint.json b/types/inputmask/tslint.json index 08b1465cd6..f93cf8562a 100644 --- a/types/inputmask/tslint.json +++ b/types/inputmask/tslint.json @@ -1,6 +1,3 @@ { - "extends": "dtslint/dt.json", - "rules": { - "unified-signatures": false - } + "extends": "dtslint/dt.json" }