@adyen/kyc-components
Version:
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar
15 lines (14 loc) • 529 B
TypeScript
export interface LoggerMethods {
debug: (...args: any[]) => void;
info: (...args: any[]) => void;
log: (...args: any[]) => void;
warn: (...args: any[]) => void;
error: (...args: any[]) => void;
trace: (...args: any[]) => void;
}
export declare const consoleMethodsPrefixable: Readonly<Array<keyof LoggerMethods>>;
/**
* Creates a Logger instance
* @param {String} namespace - a text that should be prepended before the output
*/
export declare const createLogger: (namespace: string) => LoggerMethods;