docs(file-path): fix jsdoc

This commit is contained in:
Daniel 2018-04-08 21:32:20 +02:00
parent 06094c2b53
commit 3e9e578781

View File

@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
declare const window: any;
@ -32,13 +32,13 @@ declare const window: any;
})
@Injectable()
export class FilePath extends IonicNativePlugin {
/**
* Resolve native path for given content URL/path.
* @param {String} path Content URL/path.
* @param {string} path Content URL/path.
* @returns {Promise<string>}
*/
@Cordova()
resolveNativePath(path: string): Promise<string> { return; }
resolveNativePath(path: string): Promise<string> {
return;
}
}