mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-13 19:29:37 +08:00
22 lines
396 B
TypeScript
22 lines
396 B
TypeScript
![]() |
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;
|
||
|
}
|