11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
import { show, close, ActionSheetTheme } from './show';
|
|
export { ActionSheetTheme };
|
|
export default {
|
|
show(options) {
|
|
return show(options);
|
|
},
|
|
close(options) {
|
|
return close(options);
|
|
},
|
|
};
|