mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-05-13 17:11:49 +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;
|
|
}
|