Hello,
There is a small mistake in .d.ts:
enableDebug: (
enabled: boolean,
successCallback: (any) => void,
errorCallback?: (error: string) => void
) => void;
successCallback should be the type of (result: any) => void, otherwise typescript compiler would failed if noImplicitAny is set true in tsconfig.json.
Hello, There is a small mistake in .d.ts: enableDebug: ( enabled: boolean, successCallback: (any) => void, errorCallback?: (error: string) => void ) => void;
successCallback should be the type of (result: any) => void, otherwise typescript compiler would failed if noImplicitAny is set true in tsconfig.json.