HMS-Core / hms-cordova-plugin

This repo contains all of Cordova HMS plugins.
https://developer.huawei.com/consumer/en/doc/overview/HMS-Core-Plugin?ha_source=hms1
Apache License 2.0
88 stars 40 forks source link

No type definitions for generic cordova project #151

Open Delagen opened 7 months ago

Delagen commented 7 months ago

Description No typescript definitions

Expected behavior Correct type checking

Current behavior No any global variables in TS

Environment

Other As solution for typescheck I copied @hmscore/cordova-plugin-hms-push/ionic-native/dist/index.d.ts with removing all references to ionic and small changes as

declare global {
    const HmsPush: HmsPushOriginal;
    const HmsLocalNotification: HmsLocalNotificationOriginal;
    const HmsPushEvent: HmsPushEventOriginal;
    const HmsPushProfile: HmsPushProfileOriginal;
}