function tgz.compressimport { tgz } from "https://deno.land/x/compress@v0.5.0/mod.ts"; const { compress } = tgz; compress(src: string,dest: string,options?: compressInterface,): Promise<void>Compresses a file to a .tgz format. Parameterssrc: string The source file path. dest: string The destination file path. optionaloptions: compressInterface Optional parameters for compression. ReturnsPromise<void> A promise that resolves when the operation is complete.