Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LoadingOptions

import type { LoadingOptions } from "https://raw.githubusercontent.com/SheepTester/htmlifier/v1.0.2/src/htmlifier.ts";

Options customising the screen that shows while the project is loading.

interface LoadingOptions {
image: File | string | null;
progressBar: Colour | null;
stretch: boolean;
}

§Properties

§
image: File | string | null
[src]

An image to show while the project is loading. Either a File, a URL to an image (not included inside the HTML file), or null for no image.

§
progressBar: Colour | null
[src]

The colour of the loading progress bar or null for no progress bar

§
stretch: boolean
[src]

Whether the loading image should be stretched to fill the screen.