mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-05-18 01:24:06 +08:00
docs(file-path): fix jsdoc
This commit is contained in:
parent
06094c2b53
commit
3e9e578781
@ -1,5 +1,5 @@
|
|||||||
import { Injectable } from '@angular/core';
|
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;
|
declare const window: any;
|
||||||
|
|
||||||
@ -32,13 +32,13 @@ declare const window: any;
|
|||||||
})
|
})
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class FilePath extends IonicNativePlugin {
|
export class FilePath extends IonicNativePlugin {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resolve native path for given content URL/path.
|
* Resolve native path for given content URL/path.
|
||||||
* @param {String} path Content URL/path.
|
* @param {string} path Content URL/path.
|
||||||
* @returns {Promise<string>}
|
* @returns {Promise<string>}
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
resolveNativePath(path: string): Promise<string> { return; }
|
resolveNativePath(path: string): Promise<string> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user