mirror of
https://github.com/zhigang1992/react-native-shadow-view.git
synced 2026-01-13 09:30:06 +08:00
8 lines
246 B
TypeScript
8 lines
246 B
TypeScript
/// <reference types="react" />
|
|
import * as React from 'react';
|
|
import { ViewProperties } from 'react-native';
|
|
export declare class ShadowView extends React.Component<ViewProperties, any> {
|
|
render(): JSX.Element;
|
|
}
|
|
export default ShadowView;
|