capacitor-branch-deep-links
Version:
Capacitor plugin for Branch.io deep links
14 lines (10 loc) • 338 B
text/typescript
import { registerPlugin } from '@capacitor/core';
import type { BranchDeepLinksPlugin } from './definitions';
const BranchDeepLinks = registerPlugin<BranchDeepLinksPlugin>(
'BranchDeepLinks',
{
web: () => import('./web').then(m => new m.BranchDeepLinksWeb()),
},
);
export * from './definitions';
export { BranchDeepLinks };