Files

12 lines
343 B
TypeScript
Raw Permalink 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;