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

WebApp

import type { WebApp } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";

A web app.

interface WebApp {
displayMode?:
| "DISPLAY_MODE_UNSPECIFIED"
| "MINIMAL_UI"
| "STANDALONE"
| "FULL_SCREEN";
icons?: WebAppIcon[];
name?: string;
startUrl?: string;
title?: string;
versionCode?: bigint;
}

§Properties

§
displayMode?: "DISPLAY_MODE_UNSPECIFIED" | "MINIMAL_UI" | "STANDALONE" | "FULL_SCREEN"
[src]

The display mode of the web app.

§
icons?: WebAppIcon[]
[src]

A list of icons for the web app. Must have at least one element.

§
name?: string
[src]

The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}.

§
startUrl?: string
[src]

The start URL, i.e. the URL that should load when the user opens the application.

§
title?: string
[src]

The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon).

§
versionCode?: bigint
[src]

The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date.