import { IAuthParam as IAP } from '@serene-dev/la-nest-library';
import { EAuthType } from 'src/modules/authentication/enums/authentication.enum';
export interface IAuthParam extends IAP {
    isUser?: boolean;
    isAdminUser?: boolean;
    isClientUser?: boolean;
    userType?: EAuthType;
    isClient?: boolean;
    isProvider?: boolean;
    isTest?: boolean;
    orgID?: string;
}
