Files
mini-yu/uni_modules/tdesign-uniapp/components/action-sheet/index.d.ts

12 lines
343 B
TypeScript
Raw Normal View History

2026-02-10 08:05:03 +08:00
import type { ActionSheetItem, ActionSheetTheme, ActionSheetShowOption } from './show.d.ts';
export { ActionSheetItem, ActionSheetTheme, ActionSheetShowOption };
declare type Instance = any;
declare const Handler: {
show(options: ActionSheetShowOption): Instance;
close(options: ActionSheetShowOption): void;
};
export default Handler;