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

GoogleAppsScriptTypeWebAppConfig

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

Web app entry point configuration.

interface GoogleAppsScriptTypeWebAppConfig {
access?:
| "UNKNOWN_ACCESS"
| "MYSELF"
| "DOMAIN"
| "ANYONE"
| "ANYONE_ANONYMOUS";
executeAs?: "UNKNOWN_EXECUTE_AS" | "USER_ACCESSING" | "USER_DEPLOYING";
}

§Properties

§
access?: "UNKNOWN_ACCESS" | "MYSELF" | "DOMAIN" | "ANYONE" | "ANYONE_ANONYMOUS"
[src]

Who has permission to run the web app.

§
executeAs?: "UNKNOWN_EXECUTE_AS" | "USER_ACCESSING" | "USER_DEPLOYING"
[src]

Who to execute the web app as.