UNPKG

572 BTypeScriptView Raw
1/// <reference types="react" />
2import * as React from 'react';
3interface IPropTypes {
4 left?: Array<{
5 text: React.ReactNode;
6 onPress?: () => void;
7 type?: any;
8 style?: any;
9 className?: string;
10 }>;
11 right?: Array<{
12 text: React.ReactNode;
13 onPress?: () => void;
14 type?: any;
15 style?: any;
16 className?: string;
17 }>;
18 autoClose?: boolean;
19 onOpen?: () => void;
20 onClose?: () => void;
21 disabled?: boolean;
22 style?: any;
23 prefixCls?: string;
24}
25export default IPropTypes;