diff --git a/src/@ionic-native/plugins/firebase-dynamic-links/index.ts b/src/@ionic-native/plugins/firebase-dynamic-links/index.ts index 7a69ec89b..03a036148 100644 --- a/src/@ionic-native/plugins/firebase-dynamic-links/index.ts +++ b/src/@ionic-native/plugins/firebase-dynamic-links/index.ts @@ -7,10 +7,6 @@ export interface IDynamicLink { deepLink: string; } -export interface ICreatedDynamicLink { - url: string; -} - export interface ILinkOptions { domainUriPrefix?: string; link?: string; @@ -116,36 +112,36 @@ export class FirebaseDynamicLinks extends IonicNativePlugin { /** * Creates a Dynamic Link from the parameters. Returns a promise fulfilled with the new dynamic link url. * @param {ILinkOptions} opt [Dynamic Link Parameters](https://github.com/chemerisuk/cordova-plugin-firebase-dynamiclinks#dynamic-link-parameters) - * @return {Promise} Returns a promise with the url + * @return {Promise} Returns a promise with the url */ @Cordova({ otherPromise: true, }) - createDynamicLink(opts: ILinkOptions): Promise { + createDynamicLink(opts: ILinkOptions): Promise { return; } /** * Creates a shortened Dynamic Link from the parameters. Shorten the path to a string that is only as long as needed to be unique, with a minimum length of 4 characters. Use this method if sensitive information would not be exposed if a short Dynamic Link URL were guessed. * @param {ILinkOptions} opt [Dynamic Link Parameters](https://github.com/chemerisuk/cordova-plugin-firebase-dynamiclinks#dynamic-link-parameters) - * @return {Promise} Returns a promise with the url + * @return {Promise} Returns a promise with the url */ @Cordova({ otherPromise: true, }) - createShortDynamicLink(opts: ILinkOptions): Promise { + createShortDynamicLink(opts: ILinkOptions): Promise { return; } /** * Creates a Dynamic Link from the parameters. Shorten the path to an unguessable string. Such strings are created by base62-encoding randomly generated 96-bit numbers, and consist of 17 alphanumeric characters. Use unguessable strings to prevent your Dynamic Links from being crawled, which can potentially expose sensitive information. * @param {ILinkOptions} opt [Dynamic Link Parameters](https://github.com/chemerisuk/cordova-plugin-firebase-dynamiclinks#dynamic-link-parameters) - * @return {Promise} Returns a promise with the url + * @return {Promise} Returns a promise with the url */ @Cordova({ otherPromise: true, }) - createUnguessableDynamicLink(opts: ILinkOptions): Promise { + createUnguessableDynamicLink(opts: ILinkOptions): Promise { return; } }