I publish my extension to be available for mobile firefox and for that I need an id in GeckoAndroidSpecificProperties.
Currently it does not exist.
workaround is extending the property, but it would be nice to have it so that users don't need to extend that interface manually.
declare module 'webextension-polyfill' {
namespace Manifest {
interface GeckoAndroidSpecificProperties {
id?: string
}
}
}