import { Adjust, AdjustConfig, AdjustEnvironment } from '@awesome-cordova-plugins/adjust';
 constructor(private adjust: Adjust) { }
 ...
 const config = new AdjustConfig('APP-TOKEN-HERE', AdjustEnvironment.Sandbox);
 config.logLevel = AdjustLogLevel.Verbose;
 
 adjust.create(config);