function uncompressimport { uncompress } from "https://deno.land/x/compress@v0.5.0/zip/mod.ts"; uncompress(src: string,dest?: string,options?: uncompressInterface,): Promise<string | false>Uncompresses a zip file. Parameterssrc: string The path to the zip file. optionaldest: string = [UNSUPPORTED] The path where the extracted files will be placed. Defaults to "./" if not provided. optionaloptions: uncompressInterface Optional uncompression options. ReturnsPromise<string | false>A promise that resolves to the path of the extracted files, or false if the uncompression process failed.