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

UserInfo

import type { UserInfo } from "https://raw.githubusercontent.com/scrapbox-jp/types/0.1.2/mod.ts";

user detailed information

interface UserInfo extends User {
created: number;
email: string;
pro: boolean;
provider: "google" | "microsoft" | "email";
updated: number;
}

§Extends

§Properties

§
created: number
[src]

accountの作成日時

§
email: string
[src]

user e-mail

§
pro: boolean
[src]

whether the user is a pro user or not

§
provider: "google" | "microsoft" | "email"
[src]

login provider

§
updated: number
[src]

accountの更新日時