UNPKG

moleculer-iam

Version:

Centralized IAM module for moleculer. Including a certified OIDC provider and an Identity provider for user profile, credentials, and custom claims management. Custom claims could be defined/updated by declarative schema which contains claims validation a

10 lines (9 loc) 307 B
export interface Logger { error(...args: any[]): void; warn(...args: any[]): void; info(...args: any[]): void; debug(...args: any[]): void; trace(...args: any[]): void; getLogger?(name: string): Logger; } export declare type LogLevel = "error" | "warn" | "info" | "debug" | "trace";