awesome-cordova-plugins/src/plugins/actionsheet.ts

22 lines
396 B
TypeScript
Raw Normal View History

2015-11-30 06:30:15 +08:00
import {Plugin, Cordova} from './plugin';
@Plugin({
name: 'ActionSheet',
plugin: 'cordova-plugin-actionsheet',
pluginRef: 'plugins.actionsheet',
repo: 'https://github.com/EddyVerbruggen/cordova-plugin-actionsheet'
})
export class ActionSheet {
@Cordova({
successIndex: 1,
errIndex: 2
})
static show;
@Cordova({
successIndex: 1,
errIndex: 2
})
static hide;
}