Fiz o import do Vibration conforme explicado, porém ocorre erro ao tentar injetar no construtor:
constructor(
public navCtrl: NavController,
public navParams: NavParams,
private _agendamentosService: AgendamentosServiceProvider,
private _alertCtrl: AlertController,
private _agendamentoDao: AgendamentoDaoProvider,
private _vibration: Vibration) {
this.carro = this.navParams.get('carroSelecionado');
this.precoTotal = this.navParams.get('precoTotal');
}
A importação ficou assim:
import { Vibration } from '@ionic-native/vibration';
O erro é esse:
'Vibration' refers to a value, but is being used as a type here.ts(2749)