mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-18 07:19:27 +08:00
* fix: connect ts declaration with @types/react-native * fix: ts declaration * fix: ts declaration
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
import * as React from 'react';
|
|
import { ViewProps } from 'react-native';
|
|
import { ThemeShape } from '../types';
|
|
|
|
export interface DividerProps extends ViewProps {
|
|
inset?: boolean;
|
|
theme?: ThemeShape;
|
|
}
|
|
|
|
export declare class Divider extends React.Component<DividerProps> {}
|