You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am new in TS and when I tried running the code from your README for "decode file" section to just decode a dlt file, I ran into this error
goo.ts:8:87 - error TS2345: Argument of type '{ stringify: true; datetime: boolean; }' is not assignable to parameter of type 'IOptions'.
Object literal may only specify known properties, and 'datetime' does not exist in type 'IOptions'.
I am new in TS and when I tried running the code from your README for "decode file" section to just decode a dlt file, I ran into this error
goo.ts:8:87 - error TS2345: Argument of type '{ stringify: true; datetime: boolean; }' is not assignable to parameter of type 'IOptions'.
Object literal may only specify known properties, and 'datetime' does not exist in type 'IOptions'.
8 const tranform : DLT.TransformStream = new DLT.TransformStream({}, { stringify: true, datetime: true });
~~~~~~~~~~~~~~
goo.ts:24:28 - error TS2304: Cannot find name 'writer'.
24 reader.pipe(tranform).pipe(writer, { end: false });
~~~~~~
Found 2 errors in the same file, starting at: goo.ts:8
The text was updated successfully, but these errors were encountered: