@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
14 lines (13 loc) • 431 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
*/
export declare const createLogger: () => LoggerMethods;