UNPKG

293 BTypeScriptView Raw
1import * as React from 'react';
2
3declare namespace Badge {
4 export interface BadgeProps extends React.HTMLProps<Badge> {
5 bsClass?: string | undefined;
6 pullRight?: boolean | undefined;
7 }
8}
9declare class Badge extends React.Component<Badge.BadgeProps> { }
10export = Badge;