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

ImplicitUriOptions

import type { ImplicitUriOptions } from "https://raw.githubusercontent.com/cmd-johnson/deno-oauth2-client/master/mod.ts";
interface ImplicitUriOptions {
scope?: string | string[];
state?: string;
}

§Properties

§
scope?: string | string[]
[src]

Scopes to request with the authorization request.

If an array is passed, it is concatenated using spaces as per https://tools.ietf.org/html/rfc6749#section-3.3

§
state?: string
[src]

State parameter to send along with the authorization request.

see https://tools.ietf.org/html/rfc6749#section-4.2.1