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