Skip to content

Commit 5f9aa53

Browse files
committed
Ignore error "Type 'Fix' is not assignable to type 'Replacement'.
Property 'innerStart' is missing in type 'Fix'."
1 parent b9eb0cf commit 5f9aa53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ function init(modules: { typescript: typeof ts_module }) {
263263
} else {
264264
// in tslint 5 a Fix is a Replacement | Replacement[]
265265
if (!Array.isArray(fix)) {
266-
replacements = [fix];
266+
replacements = [<any>fix];
267267
} else {
268268
replacements = fix;
269269
}

0 commit comments

Comments
 (0)