Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/Popover.d.ts
Henry Whitaker ea5808047f Tweaked gitignore
gitignore removed all composer and npm files, so automated builds would fail
2020-04-12 21:24:03 +01:00

23 lines
562 B
TypeScript

import * as React from 'react';
import { Placement } from './Overlay';
import PopoverContent from './PopoverContent';
import PopoverTitle from './PopoverTitle';
import { BsPrefixComponent } from './helpers';
export interface PopoverProps {
id: string | number;
placement?: Placement;
title?: React.ReactNode;
arrowProps?: { ref: any; style: object };
content?: boolean;
}
declare class Popover extends BsPrefixComponent<'div', PopoverProps> {
static Title: typeof PopoverTitle;
static Content: typeof PopoverContent;
}
export default Popover;