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

MandarineSecurity.Auth.AuthenticationResult

import type { MandarineSecurity } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts"; 

const { AuthenticationResult } = MandarineSecurity.Auth;

Contains the state of a built-in authentication process

interface AuthenticationResult {
authSesId?: string;
exception?: AuthExceptions;
message?: string;
status:
| "FAILED"
| "PASSED"
| "ALREADY-LOGGED-IN"
| "UNKNOWN";
}

§Properties

§
authSesId?: string
[src]
§
message?: string
[src]
§
status: "FAILED" | "PASSED" | "ALREADY-LOGGED-IN" | "UNKNOWN"
[src]