mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-05-13 17:11:49 +00:00
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
import { Duplex } from "node:stream";
|
|
|
|
interface Archive {
|
|
extract(source: string): Duplex;
|
|
}
|
|
|
|
export default Archive;
|