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

CloudOptions

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

Options defining how cloud variables are stored.

interface CloudOptions {
projectId: string;
serverUrl: string | null;
specialBehaviours: boolean;
}

§Properties

§
projectId: string
[src]

The project ID used to identify the project to the cloud server. Default: 0. Not needed if serverUrl is null.

§
serverUrl: string | null
[src]

The URL of the cloud server, starting with ws:// or wss://. null to not use a web server and instead store cloud variables in localStorage. Default: null.

§
specialBehaviours: boolean
[src]

Whether to use special cloud variable behaviours for cloud variables of certain names. Some of these special cloud variables interact with web APIs when set by the project, or are automatically set with a value such as the URL of the page.