Skip to content

Commit

Permalink
feat(firebase-dynamic-links): Add missing method getDynamicLink() (#3567
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ericgopak authored Nov 19, 2020
1 parent af114f4 commit d7c6f86
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/@ionic-native/plugins/firebase-dynamic-links/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,17 @@ export interface ILinkOptions {
})
@Injectable()
export class FirebaseDynamicLinks extends IonicNativePlugin {
/**
* Determines if the app has a pending dynamic link and provides access to the dynamic link parameters.
* @return {Promise<IDynamicLink>} Returns a promise
*/
@Cordova({
otherPromise: true,
})
getDynamicLink(): Promise<IDynamicLink> {
return;
}

/**
* Registers callback that is triggered on each dynamic link click.
* @return {Observable<IDynamicLink>} Returns an observable
Expand Down

0 comments on commit d7c6f86

Please sign in to comment.