[improvement] Actionsheet: tsx (#2807)

This commit is contained in:
neverland
2019-02-20 15:55:02 +08:00
committed by GitHub
parent 9236132dbf
commit 52e6fd2f0b
4 changed files with 147 additions and 102 deletions
+13
View File
@@ -0,0 +1,13 @@
export type GetContainer = (container: HTMLElement) => void;
export type PopupMixinProps = {
value: boolean;
zIndex: string | number;
overlay?: boolean;
lockScroll: boolean;
lazyRender: boolean;
overlayClass?: any;
overlayStyle?: object | object[];
getContainer?: string | GetContainer;
closeOnClickOverlay?: boolean;
};