city-casereport/miniprogram_npm/tdesign-miniprogram/action-sheet/index.js
2023-12-06 14:22:42 +08:00

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);
},
};