mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-07-09 03:57:46 +00:00
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import { Duplex } from "node:stream";
|
|
|
|
export default interface Extractor {
|
|
extract(options: { file: string }): Duplex;
|
|
}
|