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

authParams

import type { authParams } from "https://raw.githubusercontent.com/akshgpt7/youtube-api-deno/master/src/mod.ts";
interface authParams extends param {
access_type?: "online" | "offline";
client_id: string;
include_granted_scopes?: boolean;
login_hint?: string;
prompt?:
| "none"
| "consent select_account"
| "consent"
| "select_account";
redirect_uri: string;
response_type?: "code" | "token";
scope: string;
state?: string;
}

§Extends

§Properties

§
access_type?: "online" | "offline"
[src]
§
client_id: string
[src]
§
include_granted_scopes?: boolean
[src]
§
login_hint?: string
[src]
§
prompt?: "none" | "consent select_account" | "consent" | "select_account"
[src]
§
redirect_uri: string
[src]
§
response_type?: "code" | "token"
[src]
§
scope: string
[src]
§
state?: string
[src]