Cleanup lint ignore error: callable-types

This commit is contained in:
segayuu
2017-11-24 09:52:18 +09:00
parent d22dd362f4
commit 8f627efc64
2 changed files with 1 additions and 4 deletions

View File

@@ -19,9 +19,7 @@ declare namespace Ejs {
function clearCache(): any;
interface TemplateFunction {
(data: Data): any;
}
type TemplateFunction = (data: Data) => any;
interface Options {
cache?: any;
filename?: string;

View File

@@ -1,7 +1,6 @@
{
"extends": "dtslint/dt.json",
"rules": {
"callable-types": false,
"export-just-namespace": false,
"interface-over-type-literal": false,
"no-var-keyword": false,