Skip to content

Commit

Permalink
fix(build): tsc access .id from any not Object
Browse files Browse the repository at this point in the history
  • Loading branch information
mbehr1 committed Dec 31, 2020
1 parent 3d861f9 commit 8529ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dltDocument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ export class DltDocument {
let skipped = 0;
for (let i = 0; i < filterObjs.length; ++i) {
try {
let filterConf = filterObjs[i];
let filterConf: any = filterObjs[i];
const targetIdx = i - skipped;

// is this one contained?
Expand Down

0 comments on commit 8529ad2

Please sign in to comment.