UNPKG

687 BTypeScriptView Raw
1import * as React from 'react';
2import { Sizes, Omit } from 'react-bootstrap';
3
4declare namespace Popover {
5 export interface PopoverProps extends Omit<React.HTMLProps<Popover>, "title"> {
6 // Optional
7 arrowOffsetLeft?: number | string;
8 arrowOffsetTop?: number | string;
9 bsSize?: Sizes;
10 bsStyle?: string;
11 bsClass?: string;
12 placement?: string;
13 positionLeft?: number | string; // String support added since v0.30.0
14 positionTop?: number | string; // String support added since v0.30.0
15 title?: React.ReactNode;
16 }
17}
18declare class Popover extends React.Component<Popover.PopoverProps> { }
19export = Popover;