@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
13 lines (12 loc) • 346 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;
}
/**
* Creates a Logger instance
*/
export declare const createLogger: () => LoggerMethods;