capacitor-branch-deep-links
Version:
Capacitor plugin for Branch.io deep links
55 lines • 2.18 kB
JavaScript
import { WebPlugin } from '@capacitor/core';
export class BranchDeepLinksWeb extends WebPlugin {
constructor() {
super({
name: 'BranchDeepLinks',
platforms: ['web'],
});
}
handleUrl(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
generateShortUrl(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
showShareSheet(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
getStandardEvents() {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
sendBranchEvent(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
handleATTAuthorizationStatus(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
disableTracking(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
setIdentity(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
logout() {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
getBranchQRCode(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
getLatestReferringParams() {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
getFirstReferringParams() {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
setDMAParamsForEEA(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
setConsumerProtectionAttributionLevel(_) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
addListener(_eventName, _listenerFunc) {
return Promise.reject(new Error('BranchDeepLinks does not have web implementation'));
}
}
//# sourceMappingURL=web.js.map