Documentation - v1.2.0-alpha.5
    Preparing search index...

    Represents a resource for signing in. This interface defines the structure of a sign-in resource, including the sign-in link, token exchange resource, and token post resource.

    interface SignInResource {
        signInLink: string;
        tokenExchangeResource: TokenExchangeResource;
        tokenPostResource: TokenPostResource;
    }
    Index

    Properties

    signInLink: string

    The link for signing in.

    tokenExchangeResource: TokenExchangeResource

    The resource for token exchange.

    tokenPostResource: TokenPostResource

    The resource for token post.