capacitor-docs
capacitor-docs copied to clipboard
Incorrect Method Types information
Method Types page contains incorrect information.
The Void Return section is incorrect, PluginMethod.RETURN_NONE returns nothing, not a promise.
method1(): Promise<void>; should be changed to method1():void; and the texts need to change accordingly to not say it returns a promise, and maybe add an example of returning a void promise.