react-native-windows
Version:
React Native for Windows
22 lines • 916 B
TypeScript
/**
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
* @format
*/
import * as React from 'react';
import { ViewProps } from 'react-native';
export declare type Placement = 'top' | 'bottom' | 'left' | 'right' | 'full' | 'top-edge-aligned-left' | 'top-edge-aligned-right' | 'bottom-edge-aligned-left' | 'bottom-edge-aligned-right' | 'left-edge-aligned-top' | 'right-edge-aligned-top' | 'left-edge-aligned-bottom' | 'right-edge-aligned-bottom';
export interface IFlyoutProps extends ViewProps {
horizontalOffset?: number;
isLightDismissEnabled?: boolean;
/**
* Specifies whether the area outside the flyout is darkened
*/
isOverlayEnabled?: boolean;
isOpen?: boolean;
onDismiss?: (isOpen: boolean) => void;
placement?: Placement;
target?: React.ReactNode;
verticalOffset?: number;
}
//# sourceMappingURL=FlyoutProps.d.ts.map