UNPKG

reactnativecomponents

Version:
13 lines (12 loc) 307 B
export interface AlertArgs { title?: string; message?: string; button?: Array<any> | object; onOk?: () => void; options?: any; } /** * @author 田尘殇Sean(sean.snow@live.com) * @date 2017/3/22 */ export default function ({ title, message, button, onOk, options }: AlertArgs): void;