rewardwee_auth_access
Version:
auth verify access for all microservices
9 lines (8 loc) • 367 B
TypeScript
import { RESPONSE_TYPE } from "../helpers/customTypes";
import { Model, ObjectId } from 'mongoose';
import { LoginRecord } from "bamble_store_schemas";
declare class AuthLoginClass {
isUserLoggedIn(user_id: ObjectId, token: string, UserLoginRecord: Model<LoginRecord>): Promise<RESPONSE_TYPE>;
}
export declare const AuthLogin: AuthLoginClass;
export {};