When Node 12.5 was released, Duplex.from was marked deprecated in @types/readable-stream, with the note "This is a dummy function required to retain type compatibility to node." This doesn't seem to be the case anymore. Can we remove the deprecated tag?
class Duplex extends _Writable implements _IDuplex, /*extends*/ _Readable, Duplex {
/**
* This is a dummy function required to retain type compatibility to node.
* @deprecated DO NOT USE
*/
static from(source: any): any;
When Node 12.5 was released,
Duplex.from
was marked deprecated in @types/readable-stream, with the note "This is a dummy function required to retain type compatibility to node." This doesn't seem to be the case anymore. Can we remove the deprecated tag?@types/readable-stream/index.d.ts#L279-L284