class FSWriter implements Writerimport { FSWriter } from "https://dotland.deno.dev/x/lume@v2.2.2/core/writer.ts"; Class to write the generated pages and static files in the dest folder. ConstructorsnewFSWriter(options: Options)Propertiesdest: stringMethodsclear()Empty the dest folder copyFile(file: StaticFile): Promise<boolean>Copy a static file in the dest folder Returns a boolean indicating if the file has saved copyFiles(files: StaticFile[]): Promise<StaticFile[]>Copy the static files in the dest folder removeFiles(files: string[])savePage(page: Page): Promise<boolean>Save a page in the dest folder Returns a boolean indicating if the page has saved savePages(pages: Page[]): Promise<Page[]>Save the pages in the dest folder Returns an array of pages that have been saved