index.js 221 B

12345678910
  1. import { show, close, ActionSheetTheme } from './show';
  2. export { ActionSheetTheme };
  3. export default {
  4. show(options) {
  5. return show(options);
  6. },
  7. close(options) {
  8. return close(options);
  9. },
  10. };