mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-13 19:29:37 +08:00
12 lines
176 B
TypeScript
12 lines
176 B
TypeScript
import {Plugin, Cordova} from './plugin';
|
|
|
|
declare var window;
|
|
|
|
@Plugin({
|
|
name: 'File',
|
|
plugin: 'cordova-plugin-file',
|
|
pluginRef: 'cordova.file'
|
|
})
|
|
export class File {
|
|
}
|