mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-17 12:11:35 +08:00
13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
import * as React from 'react';
|
|
import { ThemeShape } from '../types';
|
|
|
|
export interface ModalProps {
|
|
dismissable?: boolean;
|
|
onDismiss?: () => any;
|
|
visible: boolean;
|
|
children: React.ReactNode;
|
|
theme?: ThemeShape;
|
|
}
|
|
|
|
export declare class Modal extends React.Component<ModalProps> {}
|