@cranberry-money/shared-utils
Version:
Shared utility functions for Blueberry platform
9 lines • 439 B
TypeScript
import type { UserProfile } from '@cranberry-money/shared-types';
export type VerificationStatusType = 'verified' | 'pending' | 'rejected' | 'not_started' | 'not_verified' | 'unknown';
interface VerificationStatus {
type: VerificationStatusType;
label: string;
}
export declare function getUserVerificationStatus(profile?: UserProfile | string | null): VerificationStatus;
export {};
//# sourceMappingURL=user-verification.d.ts.map