Files
Compo-Service-Log-Project/src/services/archive/Archive.ts
T

8 lines
121 B
TypeScript

import { Duplex } from "node:stream";
interface Archive {
extract(source: string): Duplex;
}
export default Archive;