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

ButtonOptions

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

Options for toggling which buttons are shown in the top-right corner of the resulting HTML file.

interface ButtonOptions {
addSprite: boolean;
download: boolean;
fullscreen: boolean;
startStop: boolean;
}

§Properties

§
addSprite: boolean
[src]

Whether to show a button that lets you add a sprite by selecting a .sprite3/.sprite2 file.

Apparently, this can be used for an OS project to add a custom app, where each app is contained within a sprite.

§
download: boolean
[src]

Whether to show a button that downloads the project's current state as an .sb3. Apparently this is useful for some kinds of projects where they want you to remix the project to save the game state or add your own thing to the project.

§
fullscreen: boolean
[src]

Whether to show the fullscreen button.

§
startStop: boolean
[src]

Whether to show start/stop buttons.