Files
lingxiao865 c5af079d8c first commit
2026-02-10 08:05:03 +08:00

14 lines
244 B
JavaScript

import { show, close, ActionSheetTheme, actionSheetTheme } from './show';
export { ActionSheetTheme, actionSheetTheme };
export default {
show(options) {
return show(options);
},
close(options) {
return close(options);
},
};