@stacks/auth
Version:
Authentication for Stacks apps.
13 lines (12 loc) • 468 B
TypeScript
import { AuthScope } from './constants';
export declare class AppConfig {
appDomain?: string;
scopes: (AuthScope | string)[];
redirectPath: string;
manifestPath: string;
coreNode?: string;
authenticatorURL?: string;
constructor(scopes?: string[], appDomain?: string | undefined, redirectPath?: string, manifestPath?: string, coreNode?: string | undefined, authenticatorURL?: string);
redirectURI(): string;
manifestURI(): string;
}