Hi, i wanna import an ionic project of my job to see some things of a certain API, so i do the git clone of the project and i’m trying to execute on my own machine, but when i do the npm install all the packages fails and i’m trying to do reinstall of all of them, but i have problems with a certain import and i dont know how to fix it.
The plugin is this: aws-iot-device-sdk
and i’m trying of reinstall and gave me this error. The project it isn’t mine
npm install aws-iot-device-sdk
In global service.ts:
import { DeviceOptions } from "aws-iot-device-sdk";
@Injectable()
export class GlobalService {
private senderID: string = "210993439728"; // Sender ID of FCM
private awsDeviceOptions: DeviceOptions = { //AWS Config
clientId: "someap",
host: "host",
protocol: "wss",
accessKeyId: XXX",
secretKey: "XXX",
debug: false
};