class Pageimport { Page } from "https://dotland.deno.dev/x/lume@v2.2.1/core/file.ts"; A page of the site ConstructorsnewPage(src?: Partial<Src>)Type ParametersoptionalD extends Data = DataProperties_data: Record<string, unknown>The property _data is to store internal data, used by plugins, processors, etc to save arbitrary values asset: booleanIf the page is an asset or not content: Content | undefinedThe content of this page data: DUsed to save the page data document: Document | undefinedThe parsed HTML code from the content readonlyoutputPath: stringReturns the output path of this page readonlysourcePath: stringReturns the source path of this page src: SrcThe src info Methodsduplicate(index: number | undefined, data: D): Page<D>Duplicate this page. Static Methodscreate(data: Partial<Data> & { url: string; }): PageConvenient way to create a page dynamically