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

NotLoggedInError

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

Loginが必要なAPIをloginせずに叩いたときに発生するエラー

interface NotLoggedInError extends ErrorLike {
details: {
loginStrategies: (
| "google"
| "github"
| "microsoft"
| "gyazo"
| "email"
| "saml"
| "easy-trial"
)
[]
;
}
;
name: "NotLoggedInError";
}

§Extends

§Properties

§
details: {
loginStrategies: (
| "google"
| "github"
| "microsoft"
| "gyazo"
| "email"
| "saml"
| "easy-trial"
)
[]
;
}
[src]

詳細情報

§
name: "NotLoggedInError"
[src]