mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
547 B
TypeScript
15 lines
547 B
TypeScript
// Type definitions for react-native-elevated-view 0.0
|
|
// Project: https://github.com/alekhurst/react-native-elevated-view
|
|
// Definitions by: fhelwanger <https://github.com/fhelwanger>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.6
|
|
|
|
import * as React from 'react';
|
|
import * as ReactNative from 'react-native';
|
|
|
|
export interface ElevatedViewProperties extends ReactNative.ViewProperties {
|
|
elevation?: number;
|
|
}
|
|
|
|
export default class ElevatedView extends React.Component<ElevatedViewProperties> {}
|