@arc-publishing/sdk-identity
Version:
JS Identity SDK for working with Identity API
8 lines (7 loc) • 385 B
TypeScript
import { APIErrorResponse } from '../serviceHelpers/APIErrorResponse';
export interface CheckSwgLoginResponse {
identityExists: boolean;
}
export declare function isCheckSwgLoginResponse(object: any): object is CheckSwgLoginResponse;
export declare const checkSwgLogin: (idToken?: string) => Promise<APIErrorResponse | CheckSwgLoginResponse | Error>;
export default checkSwgLogin;