UNPKG

capacitor-branch-deep-links

Version:
14 lines (10 loc) 338 B
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 };