This commit is contained in:
metacryst
2026-01-09 11:14:27 -06:00
parent cf03c95664
commit 637c9e4674
2149 changed files with 527743 additions and 0 deletions

14
node_modules/@capacitor/synapse/dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
/**
* Expose CapacitorUtils.Synapse.<pluginName>
*
* By default it decides to use capacitor if is defined.
* If you want to instead use a cordova plugin in a capacitor shell, set overrideCapacitorWithCordova to true.
*
* Example use:
* window.CapacitorUtils.Synapse.DemoPlugin.ping(
* {value: "hello"},
* (val) => {console.log(val)},
* (err) => {console.error(err)}
* );
*/
export declare function exposeSynapse(overrideCapacitorWithCordova?: boolean): void;